-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
51 lines (51 loc) · 1.27 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
{
"name": "optional-dev-dependency",
"version": "2.0.1",
"description": "try to install an optional development dependency, YOLO if you can't.",
"main": "index.js",
"bin": "./bin/odd.js",
"scripts": {
"clean": "rimraf .nyc_output/ coverage/",
"pretest": "standard",
"test": "nyc ./node_modules/.bin/_mocha --timeout=30000",
"coverage": "nyc report --reporter=text-lcov | coveralls",
"release": "standard-version"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/bcoe/optional-dev-dependency.git"
},
"keywords": [
"optional",
"install",
"npm",
"install"
],
"author": "Ben Coe <[email protected]>",
"contributors": [
"Joe Hildebrand <[email protected]"
],
"license": "ISC",
"bugs": {
"url": "https://github.com/bcoe/npm-optional-dev-dependency/issues"
},
"homepage": "https://github.com/bcoe/optional-dev-dependency#readme",
"dependencies": {
"async": "^2.2.0",
"cross-spawn": "^5.1.0",
"lodash.assign": "^4.2.0",
"yargs": "^7.0.2"
},
"devDependencies": {
"chai": "^3.5.0",
"coveralls": "^2.12.0",
"mocha": "^3.2.0",
"nyc": "^10.2.0",
"rimraf": "^2.6.1",
"standard": "^9.0.2",
"standard-version": "^4.0.0"
},
"engines": {
"node": ">=4"
}
}