-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
46 lines (46 loc) · 1.03 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
{
"author": "Ivan Wills <[email protected]>",
"name": "node-getopt-long",
"description": "Sophisticated command line argument parser",
"version": "0.5.1",
"license": "GPL-3.0+",
"keywords": [
"commandline",
"argument",
"passing"
],
"node": ">=0.10",
"man": {},
"repository": {
"type": "git",
"url": "https://github.com/ivanwills/node-getopt-long.git"
},
"bugs": "https://github.com/ivanwills/node-getopt-long/issues",
"dependencies": {
"underscore": "^1.11.0"
},
"devDependencies": {
"assert": "2.0.0",
"coveralls": "^3.1.0",
"gulp": "^4.0.2",
"gulp-istanbul": "1.1.3",
"gulp-jshint": "2.1.0",
"gulp-mocha": "^7.0.2",
"gulp-sonar": "3.0.1",
"gulp-util": "3.0.8",
"jshint": "^2.12.0"
},
"optionalDependencies": {},
"readmeFilename": "README.md",
"scripts": {
"lint": "gulp lint",
"test": "gulp test",
"sonar": "gulp sonar",
"watch": "gulp watch",
"quality": "gulp quality",
"start": "gulp"
},
"engines": {
"node": "*"
}
}