This repository has been archived by the owner on Aug 21, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
75 lines (75 loc) · 1.96 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
69
70
71
72
73
74
75
{
"name": "monopod",
"version": "1.0.1",
"description": "Monorepo done simple",
"engines": {
"node": ">=4.0.0"
},
"scripts": {
"manpages": "scripts/manpages",
"prepublish": "npm run manpages",
"readme": "scripts/readme && git commit -m \"[npm run readme] Update the docs\" Readme.md Readme/*",
"coverage": "rm -rf coverage && istanbul cover test.js",
"coveralls": "npm run coverage && cat coverage/lcov.info | coveralls",
"develop": "node-dev --respawn --no-notify --no-deps test.js",
"test": "eslint . bin/* && node test.js",
"reshrinkwrap": "rm -f npm-shrinkwrap.json && npm install && npm shrinkwrap --dev && git commit -m \"[npm run shrinkwrap] Update dependencies\" npm-shrinkwrap.json package.json"
},
"bin": {
"monopod": "bin/monopod"
},
"files": [
"/**/*.js",
"!/test.js",
"/Readme.md",
"/License.md",
"/bin/",
"/manpages/"
],
"man": [
"/manpages/monopod.1"
],
"dependencies": {
"array-includes": "^3.0.2",
"chalk": "^1.1.3",
"commander": "^2.9.0",
"hasbin": "^1.2.2",
"mkdirp": "^0.5.1",
"tiny-error": "^1.0.2",
"yankee": "^1.0.7"
},
"devDependencies": {
"as": "^0.4.1",
"commander-to-markdown": "^1.2.0",
"coveralls": "^2.11.9",
"eslint": "^2.10.2",
"eslint-config-airbnb-base": "^3.0.1",
"eslint-plugin-import": "^1.8.0",
"istanbul": "^0.4.3",
"marked-man": "^0.1.5",
"mock-fs": "^3.9.0",
"node-dev": "^3.1.3",
"npm": "^3.9.2",
"proxyquire": "^1.7.9",
"strip-ansi": "^3.0.1",
"tap-spec-integrated": "^1.0.1",
"tape": "^4.5.1",
"tape-catch": "^1.0.5"
},
"license": "MIT",
"keywords": [
"command",
"cli",
"monorepo",
"scripts",
"automation"
],
"author": "© 2016 Studio B12 GmbH (http://studio-b12.de)",
"contributors": [
"Tomek Wiszniewski <[email protected]>"
],
"repository": {
"type": "git",
"url": "https://github.com/studio-b12/monopod.git"
}
}