-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
58 lines (58 loc) · 1.89 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
{
"name": "@autolabjs/autolabcli",
"version": "1.0.0",
"description": "autolabcli for autolabjs.",
"main": "index.js",
"scripts": {
"unit": "nyc --reporter=lcov --reporter=text-lcov -s --all mocha 'test/unit/**/*.js'",
"post-unit": "nyc report --reporter=lcov > coverage.lcov && codecov -F unit && rm -rf ~/.autolabjs",
"integration": "nyc --reporter=lcov --reporter=text-lcov -s --all mocha 'test/integration/**/*.js'",
"post-integration": "nyc report --reporter=lcov > coverage.lcov && codecov -F integration && rm -rf ~/.autolabjs",
"feature": "nyc --reporter=lcov --reporter=text-lcov -s --all cucumber-js 'test/feature/features' -r 'test/feature/steps'",
"post-feature": "nyc report --reporter=lcov > coverage.lcov && codecov -F feature"
},
"bin": {
"autolabjs": "./index.js"
},
"repository": {
"type": "git",
"url": "https://github.com/AutolabJS/autolabcli.git"
},
"author": "Sribalaji M",
"license": "GPL v3.0",
"bugs": {
"url": "https://github.com/AutolabJS/autolabcli/issues"
},
"homepage": "https://github.com/AutolabJS/autolabcli#readme",
"dependencies": {
"caporal": "^0.9.0",
"chalk": "^2.3.0",
"cli-spinner": "^0.2.8",
"cli-table": "^0.3.1",
"figlet": "^1.2.0",
"inquirer": "^5.0.0",
"lodash": "^4.17.5",
"preferences": "^1.0.2",
"request": "^2.83.0",
"request-promise": "^4.2.2",
"socket.io-client": "^2.1.0",
"validator": "^9.4.1"
},
"devDependencies": {
"chai": "^4.1.2",
"chai-as-promised": "^7.1.1",
"codeclimate-test-reporter": "^0.5.0",
"codecov": "^3.0.0",
"coveralls": "^3.0.0",
"cucumber": "^4.0.0",
"eslint": "^4.19.1",
"eslint-config-airbnb-base": "^12.1.0",
"eslint-plugin-import": "^2.9.0",
"mocha": "^4.1.0",
"mock-stdin": "^0.3.1",
"nock": "^9.2.3",
"nyc": "^11.4.1",
"sinon": "^4.1.5",
"sinon-chai": "^2.14.0"
}
}