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