forked from rundef/node-testrail-api
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 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
{
"name": "testrail-api",
"version": "1.3.4",
"description": "A complete API wrapper for TestRail - with 100% code coverage",
"main": "index.js",
"scripts": {
"test": "./node_modules/.bin/_mocha",
"lint": "./node_modules/.bin/eslint index.js",
"cover": "./node_modules/.bin/istanbul cover --report html node_modules/.bin/_mocha --check-leaks",
"travis": "./node_modules/istanbul/lib/cli.js cover ./node_modules/.bin/_mocha",
"coveralls": "cat ./coverage/lcov.info | ./node_modules/.bin/coveralls"
},
"keywords": [
"testrail"
],
"repository": {
"type": "git",
"url": "git://github.com/rundef/node-testrail-api.git"
},
"author": "Mickael Burguet <www.rundef.com>",
"license": "MIT",
"engines": {
"node": ">= 0.12.0"
},
"devDependencies": {
"chai": "^3.5.0",
"coveralls": "^2.11.9",
"eslint": "^2.12.0",
"istanbul": "^0.4.3",
"mocha": "^2.5.3",
"nock": "^8.0.0"
},
"dependencies": {
"bluebird": "^3.4.6",
"request": "^2.72.0"
}
}