forked from blakeembrey/node-module-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
63 lines (63 loc) · 1.38 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
51
52
53
54
55
56
57
58
59
60
61
62
63
{
"name": "node-module-template",
"version": "0.0.21",
"description": "Generate my standard node module template",
"bin": "bin/node-module-template.js",
"files": [
"bin/",
"src/",
"LICENSE"
],
"scripts": {
"test": "standard"
},
"repository": {
"type": "git",
"url": "git://github.com/blakeembrey/node-module-template.git"
},
"keywords": [
"node",
"module",
"template",
"node_modules",
"example"
],
"author": {
"name": "Blake Embrey",
"email": "[email protected]",
"url": "http://blakeembrey.me"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/blakeembrey/node-module-template/issues"
},
"homepage": "https://github.com/blakeembrey/node-module-template",
"dependencies": {
"camel-case": "^1.1.1",
"chalk": "^0.5.1",
"commander": "^2.6.0",
"git-user-email": "^0.1.1",
"git-user-name": "^0.1.0",
"github-username": "^1.1.1",
"glob": "^5.0.14",
"handlebars": "^2.0.0",
"mkdirp": "^0.5.1",
"osi-licenses": "^0.1.0",
"osi-licenses-full": "^1.0.0",
"param-case": "^1.1.0",
"rimraf": "^2.2.8",
"sentence-case": "^1.1.1",
"somebody": "^2.0.0",
"spawn-sync": "^1.0.13",
"title-case": "^1.1.0"
},
"devDependencies": {
"pre-commit": "^1.1.1",
"standard": "^5.0.0"
},
"standard": {
"ignore": [
"src/**"
]
}
}