-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.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": "2.0.3",
"description": "all the hits",
"main": "lib/hits.js",
"directories": {
"test": "test"
},
"scripts": {
"nocov": "./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",
"start": "node server.js",
"dev": "PORT=8000 ./node_modules/.bin/nodemon ./server.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dwyl/hits.git"
},
"keywords": [
"hits",
"hit counter"
],
"author": "some random person on the internet...",
"license": "GPL-2.0",
"bugs": {
"url": "https://github.com/dwyl/hits/issues"
},
"homepage": "https://github.com/dwyl/hits#readme",
"dependencies": {
"redis-connection": "^5.4.0",
"socket.io": "^2.0.3"
},
"devDependencies": {
"decache": "^4.1.0",
"istanbul": "^0.4.4",
"mkdirp": "^0.5.1",
"nodemon": "^1.11.0",
"pre-commit": "^1.2.2",
"rimraf": "^2.6.1",
"tape": "^4.8.0"
},
"pre-commit": [
"coverage"
]
}