-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
36 lines (36 loc) · 986 Bytes
/
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
{
"name": "sdql",
"version": "1.0.3",
"description": "A Node.js module to query and analyze SDQL query",
"main": "index.js",
"scripts": {
"test": "mocha",
"coveralls": "istanbul cover ./node_modules/mocha/bin/_mocha --report lcovonly -- -R spec && cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js && rm -rf ./coverage"
},
"repository": {
"type": "git",
"url": "git+https://github.com/sydneyhenrard/sdql.git"
},
"keywords": [
"sdql"
],
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/sydneyhenrard/sdql/issues"
},
"homepage": "https://github.com/sydneyhenrard/sdql#readme",
"dependencies": {
"request": "^2.81.0",
"request-promise-native": "^1.0.3",
"simple-statistics": "^3.0.0"
},
"devDependencies": {
"chai": "^3.5.0",
"chai-as-promised": "^6.0.0",
"chai-json-equal": "0.0.1",
"coveralls": "^2.13.1",
"istanbul": "^0.4.5",
"mocha": "^3.2.0"
}
}