-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.14 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
{
"name": "lxsearch",
"version": "1.0.0",
"description": "",
"main": "backend.js",
"scripts": {
"start": "node index.js",
"test": "./node_modules/.bin/tape ./tests/backend-test.js",
"coverage": "istanbul cover ./node_modules/.bin/tape ./tests/backend-test.js",
"codeclimate": "CODECLIMATE_REPO_TOKEN=e517b9de7a17ec5792b48e61caa60d6140ac27af172f07f693118e71f49fd6db codeclimate-test-reporter < ./coverage/lcov.info"
},
"repository": {
"type": "git",
"url": "git+https://github.com/liberty-x/lxsearch.git"
},
"author": "liberty-x",
"license": "ISC",
"bugs": {
"url": "https://github.com/liberty-x/lxsearch/issues"
},
"homepage": "https://github.com/liberty-x/lxsearch#readme",
"devDependencies": {
"codeclimate-test-reporter": "^0.1.1",
"istanbul": "^0.3.21",
"pre-commit": "^1.1.1",
"shot": "^1.6.1",
"tape": "^4.2.0"
},
"dependencies": {
"env2": "^2.0.2",
"request": "^2.64.0"
},
"engines": {
"node": "0.12.7"
},
"repository": {
"type": "git",
"url": "https://github.com/liberty-x/lxsearch"
},
"pre-commit": [
"test",
"coverage"
]
}