forked from felixSchl/neodoc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
66 lines (66 loc) · 1.64 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
{
"name": "neodoc",
"version": "2.0.2",
"description": "Beautiful, handcrafted command line interfaces",
"main": "index.js",
"bin": {
"neodoc": "cli.js"
},
"files": [
"lib.js"
],
"directories": {
"doc": "docs",
"example": "examples",
"lib": "src",
"test": "test"
},
"scripts": {
"build": "npm run bundle && npm run minify",
"bundle": "spago bundle-module --main Neodoc --to lib.js",
"clean": "git stash && git clean -fdX",
"deps": "spago install",
"examples": "spago run --main=Example.String && spago run --main=Example.Spec",
"minify": "uglifyjs --compress --mangle --output=lib.js lib.js",
"prepublishOnly": "npm test && npm run build",
"prof": "npm run build && ./scripts/prof",
"test": "spago test && npm run test-js && npm run examples",
"test-js": "mocha test-js/test.js",
"watch": "spago run --watch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/felixschl/neodoc.git"
},
"keywords": [
"docopt",
"neodoc",
"cli",
"parser",
"parsing",
"argument",
"args",
"option",
"command"
],
"author": "Felix Schlitter <[email protected]>",
"license": "LicenseRef-LICENSE",
"bugs": {
"url": "https://github.com/felixschl/neodoc/issues"
},
"homepage": "https://github.com/felixschl/neodoc#readme",
"devDependencies": {
"chai": "^3.5.0",
"chalk": "^1.1.3",
"js-schema": "^1.0.1",
"lodash": "^4.12.0",
"mocha": "^2.4.5",
"shelljs": "^0.8.3",
"spago": "^0.13.1",
"string-argv": "0.0.2",
"uglify-js": "^3.7.6"
},
"dependencies": {
"ansi-regex": "^2.0.0"
}
}