-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 1.03 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
{
"name": "lxissue",
"version": "1.0.0",
"description": "Shame those closers",
"main": "server.js",
"directories": {
"test": "test"
},
"scripts": {
"test": "./node_modules/.bin/tape ./test/backendTest.js",
"start": "nodemon ./js/server.js",
"coverage": "istanbul cover ./node_modules/.bin/tape ./test/*",
"codeclimate": "CODECLIMATE_REPO_TOKEN=f34d7292d1aff3ec4890e0ecf1d5c8c7c75639a2a2eb9043d225bff16d122c2f codeclimate-test-reporter < ./coverage/lcov.info"
},
"repository": {
"type": "git",
"url": "git+https://github.com/liberty-x/lxissue.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/liberty-x/lxissue/issues"
},
"homepage": "https://github.com/liberty-x/lxissue#readme",
"devDependencies": {
"codeclimate-test-reporter": "^0.1.1",
"istanbul": "^0.4.0",
"nodemon": "^1.8.0",
"pre-commit": "^1.1.2",
"shot": "^1.7.0",
"tape": "^4.2.2"
},
"dependencies": {
"env2": "^2.0.4"
},
"pre-commit": [
"test",
"coverage"
]
}