forked from uber/uber-ngen
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.26 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
49
50
{
"name": "uber-ngen",
"version": "5.3.1",
"description": "Package generator (structure, changelogs, tests, package.json, etc)",
"keywords": [],
"author": "TJ Holowaychuk <[email protected]>",
"repository": {
"type": "git",
"url": "git://github.com/uber/uber-ngen.git"
},
"main": "index",
"homepage": "https://github.com/uber/uber-ngen",
"bugs": {
"url": "https://github.com/uber/uber-ngen/issues",
"email": "[email protected]"
},
"contributors": [
"Irakli Gozalishvili <[email protected]> (http://jeditoolkit.com)",
"Raynos <[email protected]>",
"dfellis <[email protected]>",
"twolfson <[email protected]>"
],
"dependencies": {
"camelize": "~0.1.2",
"chalk": "~0.4.0",
"minimist": "0.0.8",
"msee": "~0.1.1",
"promptly": "~0.2.0",
"string-template": "~0.1.3",
"underscore": "^1.7.0",
"xtend": "^2.2.0"
},
"licenses": [
{
"type": "MIT",
"url": "http://github.com/uber/uber-ngen/raw/master/LICENCE"
}
],
"scripts": {
"test": "npm run jshint",
"jshint": "jshint --verbose --exclude-path .gitignore --exclude templates/uber/content ."
},
"bin": {
"uber-ngen": "./bin/ngen.js"
},
"devDependencies": {
"jshint": "~2.4.4",
"pre-commit": "0.0.5"
}
}