-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
38 lines (38 loc) · 1.1 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
{
"name": "wordpi",
"version": "1.0.0",
"description": "Simple word guessing game created using Node.js",
"main": "api.js",
"scripts": {
"test": "./node_modules/.bin/tape ./test/* && npm run coverage",
"start": "node server.js",
"coverage": "./node_modules/.bin/istanbul cover test/*",
"codeclimate": "CODECLIMATE_REPO_TOKEN=4b8416b1650efce0a80523dfaa69c83d1bf33290d193f87570bef6b9cc29c58d codeclimate-test-reporter < ./coverage/lcov.info",
"jshint": "jshint -c .jshintrc --exclude-path .gitignore .",
"nodemon": "./node_modules/.bin/nodemon ./server.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/fcscripters/Wordpi.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/fcscripters/Wordpi/issues"
},
"homepage": "https://github.com/fcscripters/Wordpi#readme",
"devDependencies": {
"istanbul": "^0.3.21",
"jshint": "^2.8.0",
"pre-commit": "^1.1.1",
"shot": "^1.6.1",
"tape": "^4.2.0",
"travis": "^0.1.1"
},
"engines": {
"node": "0.10.x"
},
"pre-commit": [
"coverage"
]
}