-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
35 lines (35 loc) · 833 Bytes
/
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
{
"name": "feature-flipper",
"version": "0.1.0",
"description": "Another feature flipping module",
"main": "index.js",
"scripts": {
"test": "gulp test",
"test-with-coverage": "nyc npm test && nyc report --reporter=lcov",
"precommit": "gulp lint",
"prepush": "npm test"
},
"author": "Rolf Koenders <@rolfkoenders>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/RolfKoenders/feature-flipper.git"
},
"homepage": "https://github.com/RolfKoenders/feature-flipper",
"bugs": "https://github.com/RolfKoenders/feature-flipper/issues",
"nyc": {
"exclude": [
"gulpfile.js"
]
},
"devDependencies": {
"ava": "^0.21.0",
"coveralls": "^2.13.1",
"gulp": "^3.9.1",
"gulp-ava": "^0.18.0",
"gulp-xo": "^0.15.0",
"husky": "^0.14.3",
"nyc": "^11.1.0",
"xo": "^0.18.2"
}
}