-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
59 lines (59 loc) · 1.38 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
50
51
52
53
54
55
56
57
58
59
{
"name": "dafuq",
"version": "2.1.0",
"description": "",
"main": "lib/index.js",
"scripts": {
"start": "lib/cli.js --commands=test/commands --debug",
"test": "cross-env NODE_ENV=test nyc mocha",
"coverage": "cross-env NODE_ENV=test nyc report --reporter=text-lcov | coveralls",
"build": "babel src -d lib",
"preversion": "npm test",
"version": "npm run build"
},
"author": "Juan José Herrero Barbosa <[email protected]>",
"license": "MIT",
"dependencies": {
"async": "^2.1.4",
"body-parser": "^1.15.2",
"debug": "^2.3.3",
"express": "^4.14.0",
"glob": "^7.0.5",
"multer": "^1.2.0",
"traverse": "^0.6.6",
"yargs": "^5.0.0"
},
"devDependencies": {
"babel-cli": "^6.14.0",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-plugin-istanbul": "^2.0.0",
"babel-preset-es2015": "^6.14.0",
"babel-register": "^6.14.0",
"core-js": "^2.4.1",
"coveralls": "^2.11.12",
"cross-env": "^2.0.0",
"mocha": "^3.0.2",
"nyc": "^8.1.0",
"should": "^11.1.0",
"sinon": "^1.17.5",
"supertest": "^2.0.0"
},
"repository": "Upplication/node-dafuq",
"bin": {
"dafuq": "lib/cli.js"
},
"keywords": [
"command",
"commands",
"api",
"express",
"middleware",
"execute",
"exec",
"process"
],
"nyc": {
"sourceMap": false,
"instrument": false
}
}