-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.15 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
{
"name": "simple-argparse",
"version": "1.0.0",
"description": "Simple Argument parser for Command-line Applications",
"homepage": "https://github.com/forfutureLLC/node-simple-argparse",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/forfutureLLC/node-simple-argparse.git"
},
"bugs": {
"url": "https://github.com/forfutureLLC/node-simple-argparse/issues"
},
"keywords": [
"simple",
"argparse",
"arguments",
"command-line",
"parser"
],
"author": "GochoMugo <[email protected]>",
"main": "index.js",
"dependencies": {
"yargs-parser": "^2.4.0"
},
"devDependencies": {
"coveralls": "^2.11.3",
"grunt": "^1.0.1",
"grunt-cli": "^1.2.0",
"grunt-eslint": "^18.1.0",
"grunt-mocha-test": "^0.12.7",
"istanbul": "^0.4.3",
"load-grunt-tasks": "^3.2.0",
"mocha": "^2.5.3",
"mocha-lcov-reporter": "^1.2.0",
"should": "^9.0.0"
},
"scripts": {
"test": "grunt test",
"test-coverage": "istanbul cover _mocha --report lcovonly -- -R spec test/test.*.js"
},
"directories": {
"test": "test"
},
"engines": {
"node": ">= 0.10.0"
}
}