-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 926 Bytes
/
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
{
"name": "stargs",
"version": "5.0.0",
"description": "Simple testable command-line options parser",
"main": "dist/stargs.js",
"module": "dist/stargs.es.js",
"scripts": {
"prepublish": "npm run clean && npm run test && npm run build",
"build": "rollup -c",
"test": "mocha",
"clean": "rm -rf dist/"
},
"keywords": [
"command-line",
"argument",
"parser",
"unit-testable",
"simple",
"option"
],
"author": "Charles Hymans",
"license": "GPL-3.0",
"bugs": "https://github.com/c8y3/stargs/issues",
"repository": {
"type": "git",
"url": "https://github.com/c8y3/stargs.git"
},
"devDependencies": {
"babel-plugin-transform-es2015-modules-commonjs": "^6.26.0",
"babel-register": "^6.26.0",
"babel-root-slash-import": "^1.1.0",
"chai": "^4.1.2",
"mocha": "^4.0.1",
"rollup": "^0.52.1",
"rollup-plugin-root-import": "^0.2.2"
}
}