-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 819 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
{
"name": "argvparser",
"version": "1.0.4",
"description": "Simple argument parser",
"main": "index.js",
"author": "Shahmeer Navid",
"license": "MIT",
"directories": {
"test": "tests"
},
"scripts": {
"prepublish": "node_modules/gulp/bin/gulp.js compile:source"
},
"repository": {
"type": "git",
"url": "https://github.com/shahmeernavid/argparse.git"
},
"keywords": [
"node",
"argument",
"parser"
],
"bugs": {
"url": "https://github.com/shahmeernavid/argparse/issues"
},
"homepage": "https://github.com/shahmeernavid/argparse",
"devDependencies": {
"gulp-mocha": "^2.1.3"
},
"dependencies": {
"gulp": "^3.9.0",
"gulp-babel": "^5.2.1",
"gulp-sourcemaps": "^1.5.2",
"gulp-util": "^3.0.6",
"source-map-support": "^0.3.2"
}
}