-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
46 lines (46 loc) · 1.24 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
{
"name": "hits",
"version": "1.0.2",
"description": "all the hits",
"main": "lib/hits.js",
"directories": {
"test": "test"
},
"scripts": {
"quick": "./node_modules/tape/bin/tape ./test/*.js",
"test": "./node_modules/.bin/istanbul cover ./node_modules/tape/bin/tape ./test/*.js",
"coverage": "./node_modules/.bin/istanbul cover ./node_modules/tape/bin/tape ./test/*.js && ./node_modules/.bin/istanbul check-coverage --statements 100 --functions 100 --lines 100 --branches 100",
"jshint": "./node_modules/jshint/bin/jshint -c .jshintrc --exclude-path .gitignore .",
"start": "node server.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/nelsonic/hits.git"
},
"keywords": [
"hits"
],
"author": "this guy",
"license": "GPL-2.0",
"bugs": {
"url": "https://github.com/nelsonic/hits/issues"
},
"homepage": "https://github.com/nelsonic/hits#readme",
"dependencies": {
"env2": "^2.0.1",
"redis-connection": "^1.0.3",
"uniki": "^1.0.3",
"wreck": "^6.1.0"
},
"devDependencies": {
"decache": "^3.0.3",
"istanbul": "^0.3.18",
"jshint": "^2.8.0",
"pre-commit": "^1.1.1",
"tape": "^4.2.0"
},
"pre-commit": [
"jshint",
"coverage"
]
}