This repository has been archived by the owner on Apr 26, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
76 lines (76 loc) · 2.4 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
76
{
"name": "neodoc",
"version": "2.0.2",
"description": "Beautiful, handcrafted command line interfaces",
"main": "index.js",
"directories": {
"test": "test"
},
"scripts": {
"build:src": "shx mkdir -p dist && pulp build --to dist/neodoc.purs.js --skip-entry-point --optimise -m Neodoc && shx echo \"module.exports = PS;\" >> dist/neodoc.purs.js",
"build:lib": "babel lib --out-dir dist && node scripts/optimize.js",
"build:example": "pulp build -I example-purs --to output/example.js",
"prerun:example": "npm run -s build:example",
"run:example": "NODE_PATH=output node ./output/example.js",
"prebuild": "shx rm -rf dist",
"build": "npm run -s build:src && npm run -s build:lib",
"pretest": "npm run -s build",
"test:js": "mocha --compilers js:babel-register test-js",
"test:purs": "pulp test",
"test": "npm run -s test:purs && npm run -s test:js",
"watch": "npm run -s watch:purs",
"watch:all": "pulp -w test",
"watch:purs": "pulp -w test",
"watch:js": "mocha -w --compilers js:babel-register test-js",
"minify": "uglifyjs dist/neodoc.purs.js > dist/neodoc.purs.min.js",
"deps": "bower install",
"clean": "git stash && git clean -fdX",
"prerelease": "npm run -s clean && npm install && npm run -s deps && npm test",
"release": "npm version",
"preprof": "npm run -s build",
"prof": "./scripts/prof",
"postrelease": "git push --tags && npm publish"
},
"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": {
"babel-cli": "^6.6.5",
"babel-preset-es2015": "^6.6.0",
"babel-register": "^6.11.6",
"bower": "^1.7.7",
"chai": "^3.5.0",
"chalk": "^1.1.3",
"google-closure-compiler-js": "^20161024.0.0",
"js-schema": "^1.0.1",
"lodash": "^4.12.0",
"mocha": "^2.4.5",
"pulp": "^9.0.0",
"purescript": "~0.10.1",
"shelljs": "^0.7.0",
"shx": "^0.1.2",
"string-argv": "0.0.2",
"uglifyjs": "^2.4.10"
},
"dependencies": {
"ansi-regex": "^2.0.0"
}
}