-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json.bk
27 lines (27 loc) · 1004 Bytes
/
package.json.bk
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
{
"name": "<%=projectName%>",
"description": "<%=description%>",
"version": "0.0.1",
"homepage": "http://github.com/<%=gitUserName%>/<%=projectName%>",
"repository": "git://github.com/<%=gitUserName%>/<%=projectName%>.git",
"author": "<%=yourName%> <<%=yourEmail%>> (<%=yourDomain%>)",
"dependencies": {},
"devDependencies": {
"istanbul-coveralls": "^1.0.3",
"jshint": "^2.5.11",
"jshint-stylish": "^2.1.0",
"mochify": "dylanfm/mochify.js",
"mochify-istanbul": "^2.3.0",
"should": "^8.0.0"
},
"main": "./index.js",
"scripts": {
"lint": "jshint index.js lib --exclude node_modules --config .jshintrc --reporter node_modules/jshint-stylish/index.js",
"test": "npm run-script lint && mochify --recursive --reporter spec",
"coveralls": "mochify --recursive --plugin [ mochify-istanbul --exclude '**/+(test|node_modules)/**/*' --report lcov --dir ./coverage ] && istanbul-coveralls"
},
"engines": {
"node": ">= 0.10"
},
"license": "MIT"
}