forked from minhduc0257/node-argv-split
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (44 loc) · 963 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
38
39
40
41
42
43
44
{
"name": "argv-split",
"version": "2.0.1",
"description": "Split argv(argument vector) and handle special cases, such as quoted values.",
"main": "split.js",
"scripts": {
"build": "babel index.js --out-file split.js",
"test": "npm run build && node --harmony ./node_modules/.bin/ava --verbose --timeout=10s"
},
"repository": {
"type": "git",
"url": "git://github.com/kaelzhang/node-argv-split.git"
},
"keywords": [
"argv",
"argument-vector",
"split",
"quote",
"quoted-value",
"balance"
],
"engines": {
"node": ">=0.10.0"
},
"author": "Kael",
"license": "MIT",
"bugs": {
"url": "https://github.com/kaelzhang/node-argv-split/issues"
},
"ava": {
"require": "babel-register",
"babel": {
"babelrc": true
},
"files": [
"test/*.js"
]
},
"devDependencies": {
"ava": "^0.18.2",
"babel-cli": "^6.16.0",
"babel-preset-es2015": "^6.16.0"
}
}