-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 989 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 989 Bytes
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": "template",
"version": "0.0.0",
"description": "Node.js/Express Template",
"main": "app/index.js",
"directories": {
"test": "test"
},
"bin": {
"coveralls": "./node_modules/coveralls/bin/coveralls.js"
},
"scripts": {
"test": "mocha test --recursive -R spec --timeout 5000",
"watch": "mocha test --recursive -R spec --watch --timeout 5000",
"syntax": "./node_modules/grunt-cli/bin/grunt build",
"coveralls": "mocha test --recursive -r blanket -R mocha-lcov-reporter | coveralls"
},
"config": {
"blanket": {
"pattern": "/app/"
}
},
"repository": {
"type": "git",
"url": "https://github.com/nss-cohort-2014-06-07/template"
},
"author": "Chyld Medford <chyld.medford@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/nss-cohort-2014-06-07/template/issues"
},
"homepage": "https://github.com/nss-cohort-2014-06-07/template",
"dependencies": {
},
"devDependencies": {
}
}