-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
40 lines (40 loc) · 1 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
{
"name": "clop",
"version": "0.2.0",
"description": "A Command-Line OPtions argument processing utility.",
"main": "lib/index.js",
"engines": {
"node": ">=4"
},
"repository": "github:juniperoserra/clop",
"scripts": {
"test": "cross-env BABEL_ENV=test mocha --reporter spec --require babel-core/register test/**/*Test.js",
"build": "cross-env BABEL_ENV=production webpack --env=prod",
"watch": "cross-env BABEL_ENV=production webpack --env=prod --watch"
},
"keywords": [
"commandline",
"arguments"
],
"files": [
"lib/index.js"
],
"author": "Simon Greenwold",
"license": "MIT",
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-loader": "^7.1.2",
"babel-preset-es2015": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"chai": "^4.1.2",
"cross-env": "^5.1.3",
"dirty-chai": "^2.0.1",
"mocha": "^4.1.0",
"string-argv": "0.0.2",
"webpack": "^3.10.0"
},
"dependencies": {
"chalk": "^2.3.0"
}
}