-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.23 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
{
"name": "@base-cms/body-import-parser",
"version": "0.1.1",
"main": "src/index.js",
"repository": "https://github.com/base-cms/body-import-parser.git",
"author": "Jacob Bare <[email protected]>",
"license": "MIT",
"private": true,
"scripts": {
"lint": "node_modules/.bin/gulp lint",
"dev": "node_modules/.bin/gulp",
"serve": "NODE_ENV=production node src/index",
"test": "node_modules/.bin/gulp lint && node_modules/.bin/mocha",
"coverage": "node_modules/.bin/nyc node_modules/.bin/mocha"
},
"dependencies": {
"@base-cms/object-path": "^0.6.0",
"@base-cms/utils": "^0.6.0",
"body-parser": "^1.18.3",
"cheerio": "^1.0.0-rc.2",
"express": "^4.16.4"
},
"devDependencies": {
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"eslint": "^5.16.0",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-plugin-import": "^2.16.0",
"gulp": "^4.0.0",
"gulp-cached": "^1.1.1",
"gulp-eslint": "^5.0.0",
"mocha": "^6.1.2",
"nyc": "^13.3.0",
"sinon": "^7.3.1",
"supertest": "^4.0.2"
},
"nyc": {
"check-coverage": false,
"per-file": true,
"reporter": [
"text"
],
"all": true,
"cache": false,
"include": [
"src/**/*.js"
]
}
}