-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
68 lines (68 loc) · 1.48 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
60
61
62
63
64
65
66
67
68
{
"name": "switchit",
"version": "1.0.8",
"description": "Command-line Switcher and Dispatcher",
"homepage": "https://github.com/dongryphon/switchit#readme",
"author": "Don Griffin",
"license": "MIT",
"main": "index.js",
"scripts": {
"lint": "eslint ./src/**/*.js",
"pretest": "npm run lint && nsp check",
"test:unit": "nyc mocha test/unit",
"test": "npm run test:unit",
"coverage": "nyc report --reporter=text-lcov | coveralls"
},
"repository": "dongryphon/switchit",
"keywords": [
"command",
"cli"
],
"bugs": {
"url": "https://github.com/dongryphon/switchit/issues"
},
"engines": {
"node": ">6.0.0"
},
"eslintConfig": ".eslintrc.json",
"devDependencies": {
"co": "^4.6.0",
"coveralls": "^2.13.1",
"eslint": "^4.2.0",
"expect.js": "^0.3.1",
"fs-extra": "^4.0.0",
"mocha": "^3.4.2",
"nsp": "^2.6.3",
"nyc": "^11.0.3",
"randomstring": "^1.1.5",
"strip-ansi": "^4.0.0"
},
"dependencies": {
"chalk": "^2.0.1",
"columnify": "^1.5.4",
"inquirer": "^3.2.0",
"marked": "^0.3.6",
"marked-terminal": "^2.0.0",
"phylo": "^0.0.2",
"semver": "^5.3.0",
"wrap-ansi": "^3.0.1"
},
"nyc": {
"exclude": [
"index.js",
"examples",
"coverage",
"test",
"test{,-*}.js",
"**/*.test.js",
"**/__tests__/**",
"**/node_modules/**",
"playground.js"
],
"all": true,
"reporter": [
"text",
"html"
]
}
}