-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
39 lines (39 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
{
"name": "js-command-line-parsing",
"version": "0.1.0",
"description": "Yet another library to parse command line arguments.",
"main": "index.js",
"scripts": {
"test": "./node_modules/jasmine-node/bin/jasmine-node spec"
},
"repository": {
"type": "git",
"url": "git+https://github.com/boris-lenzinger/js-command-line-parsing.git"
},
"keywords": [
"javascript",
"nodejs",
"CLI",
"parsing"
],
"author": "Boris Lenzinger",
"license": "LGPL-3.0",
"bugs": {
"url": "https://github.com/boris-lenzinger/js-command-line-parsing/issues"
},
"homepage": "https://github.com/boris-lenzinger/js-command-line-parsing#readme",
"dependencies": {
"jasmine": "^2.6.0"
},
"devDependencies": {
"grunt": "^1.0.1",
"grunt-contrib-jshint": "^1.1.0",
"grunt-contrib-uglify": "^3.0.1",
"grunt-jasmine-node-coverage": "^1.2.0",
"jasmine": "^2.6.0",
"karma": "^1.7.0",
"karma-jasmine": "^1.1.0",
"karma-phantomjs-launcher": "^1.0.4",
"karma-requirejs": "^1.1.0"
}
}