forked from lifeomic/cli
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.49 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 1.49 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
54
55
56
57
58
59
60
61
62
{
"name": "@lifeomic/cli",
"version": "4.2.0",
"description": "CLI for interacting with the LifeOmic PMP API.",
"main": "lo.js",
"author": "LifeOmic <development@lifeomic.com>",
"license": "MIT",
"engines": {
"node": ">= 7.6.0"
},
"bin": {
"lo": "./lo.js"
},
"scripts": {
"prelint": "yarn",
"lint": "eslint .",
"pretest": "yarn lint",
"test": "ava --serial --verbose test/unit"
},
"dependencies": {
"axios": "^0.18.0",
"axios-retry": "^3.0.2",
"chalk": "^2.3.2",
"cli-progress": "^1.8.0",
"commander": "^2.15.1",
"configstore": "^3.1.2",
"copy-paste": "^1.3.0",
"debug": "^3.1.0",
"get-stdin": "^6.0.0",
"glob": "^7.1.2",
"inquirer": "^5.2.0",
"js-yaml": "^3.11.0",
"jsonwebtoken": "^8.2.0",
"lodash": "^4.17.5",
"mkdirp": "^0.5.1",
"open": "^0.0.5",
"prettyjson": "^1.2.1",
"queue": "^4.4.2",
"recursive-readdir": "^2.2.2",
"stoppable": "^1.0.5"
},
"devDependencies": {
"ava": "^0.25.0",
"eslint": "^4.19.1",
"eslint-config-import": "^0.13.0",
"eslint-config-semistandard": "^12.0.1",
"eslint-config-standard": "^11.0.0",
"eslint-plugin-import": "^2.10.0",
"eslint-plugin-node": "^6.0.1",
"eslint-plugin-promise": "^3.7.0",
"eslint-plugin-security": "^1.4.0",
"eslint-plugin-standard": "^3.0.1",
"proxyquire": "^2.0.1",
"sinon": "^4.5.0"
},
"eslintConfig": {
"extends": "semistandard"
},
"eslintIgnore": [
"node_modules/"
]
}