forked from AutolabJS/autolabcli
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.42 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.42 KB
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
{
"name": "@autolabjs/autolabcli",
"version": "0.1.1",
"description": "Command line interface for AutolabJS",
"main": "index.js",
"scripts": {
"lint": "eslint test/*.js lib/*.js *.js",
"test:watch": "npm run test -- -w",
"pretest": "node index.js && export PATH=$PATH:./node_modules/.bin",
"test": "nyc --reporter=lcov --reporter=text-lcov -s --all mocha test > /dev/null",
"posttest": "nyc report && nyc report --reporter=text-lcov | coveralls",
"jsdocs": "./node_modules/jsdoc/jsdoc.js --configure conf.json --private --recurse --readme README.md index.js lib/"
},
"keywords": [
"AutoLab",
"CLI"
],
"author": "AutolabJS",
"license": "GPL-3.0",
"dependencies": {
"chalk": "^1.1.3",
"clear": "0.0.1",
"cli-spinner": "^0.2.5",
"cli-table": "^0.3.1",
"figlet": "^1.2.0",
"gitlab": "^1.7.1",
"inquirer": "^1.2.3",
"lodash": "^4.17.2",
"minimist": "^1.2.0",
"preferences": "^0.2.1",
"request": "^2.79.0",
"simple-git": "^1.64.0",
"socket.io-client": "^1.7.2",
"touch": "^1.0.0"
},
"bin": {
"autolab": "./index.js"
},
"devDependencies": {
"chai": "^3.5.0",
"coveralls": "^2.13.1",
"eslint": "^3.12.2",
"istanbul": "^0.4.5",
"mocha": "^3.2.0",
"mock-stdin": "^0.3.1",
"nyc": "^10.3.2",
"jsdoc": "^3.4.3"
},
"repository": {
"type": "git",
"url": "https://github.com/AutolabJS/autolabcli"
}
}