-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 932 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 932 Bytes
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
{
"name": "indix-api-nodejs",
"version": "0.2.1",
"description": "Indix API NodeJS Client",
"main": "lib/indix-api.js",
"scripts": {
"tdd": "mocha test/*-test.js --compilers js:babel-register --watch",
"test": "mocha test/*-test.js --compilers js:babel-register --timeout 5000",
"coverage": "babel-node ./node_modules/.bin/isparta cover _mocha",
"build": "babel src -d lib",
"examples": "babel-node examples/example.js"
},
"author": "Indix",
"license": "Refer to Terms of Service.pdf",
"devDependencies": {
"babel-cli": "^6.9.0",
"babel-preset-es2015": "^6.6.0",
"chai": "^3.5.0",
"chai-fuzzy": "^1.6.1",
"isparta": "^4.0.0",
"istanbul": "^0.4.3",
"mocha": "^2.4.5"
},
"dependencies": {
"byline": "^4.2.1",
"config": "^1.21.0",
"debug": "^2.6.1",
"lodash": "^4.12.0",
"nock": "^8.0.0",
"promise": "^7.1.1",
"request": "^2.72.0"
}
}