forked from joemocha/node-project-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.17 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": "NPM-NAME",
"version": "0.0.0",
"description": "",
"main": "index.js",
"repository": {
"type": "git",
"url": "https://github.com/ORG-OR-USER/REPO-NAME"
},
"keywords": [
"",
""
],
"author": "",
"contributors": [],
"license": "MIT",
"bugs": {
"url": "https://github.com/ORG-OR-USER/REPO-NAME/issues"
},
"homepage": "https://github.com/ORG-OR-USER/REPO-NAME",
"devDependencies": {
"mkdirp": "~0.3.5",
"wrench": "~1.5.4",
"grunt-cli": "~0.1.11",
"grunt": "~0.4.2",
"grunt-contrib-clean": "~0.5.0",
"grunt-contrib-copy": "~0.5.0",
"grunt-contrib-coffee": "~0.8.0",
"grunt-contrib-jshint": "~0.8.0",
"grunt-coffeelint": "0.0.8",
"jscoverage": "~0.3.8",
"coffee-coverage": "https://api.github.com/repos/frozenice-/coffee-coverage/tarball",
"grunt-mocha-test": "~0.8.1",
"chai": "~1.8.1",
"mocha-multi": "~0.3.0",
"mocha-slow-reporter": "0.0.0",
"mocha-lcov-reporter": "0.0.1",
"coveralls": "~2.6.1"
},
"dependencies": {
},
"scripts": {
"clean": "grunt clean",
"prepublish": "grunt build",
"test": "grunt test"
},
"engines": {
"node": "0.10.x"
}
}