-
Notifications
You must be signed in to change notification settings - Fork 21
/
Copy pathpackage.json
73 lines (73 loc) · 1.76 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
{
"name": "@lifeomic/cli",
"version": "0.0.0",
"description": "CLI for interacting with the LifeOmic PHC API.",
"main": "lo.js",
"author": "LifeOmic <[email protected]>",
"license": "MIT",
"engines": {
"node": ">= 12.0.0"
},
"bin": {
"lo": "./lo.js"
},
"scripts": {
"presetup": "yarn",
"prelint": "yarn --network-timeout 1000000",
"lint": "eslint .",
"pretest": "yarn lint",
"test": "ava --serial --verbose test/unit",
"build": "./build.sh"
},
"dependencies": {
"axios": "^1.6.0",
"axios-retry": "^3.1.2",
"chalk": "^2.4.2",
"cli-progress": "^1.8.0",
"columnify": "^1.5.4",
"configstore": "^3.1.2",
"copy-paste": "^1.3.0",
"debug": "^3.2.6",
"execa": "^4.0.0",
"get-stdin": "^6.0.0",
"inquirer": "^5.2.0",
"jmespath": "^0.15.0",
"js-yaml": "^3.13.1",
"jsome": "^2.5.0",
"jsonwebtoken": "^9.0.0",
"lodash": "^4.17.11",
"mkdirp": "^0.5.1",
"moment": "^2.29.1",
"open": "^7.0.2",
"prettyoutput": "^1.2.0",
"queue": "^4.5.1",
"recursive-readdir": "^2.2.2",
"stoppable": "^1.1.0",
"stream-chain": "^2.1.0",
"stream-csv-as-json": "^1.0.1",
"stream-json": "^1.2.1",
"uuid": "^3.3.2",
"yargs": "^12.0.5"
},
"devDependencies": {
"@lifeomic/eslint-plugin-node": "^1.3.0",
"ava": "^0.25.0",
"axios-mock-adapter": "^1.19.0",
"conventional-changelog-conventionalcommits": "^4.6.3",
"eslint": "^4.19.1",
"memory-streams": "^0.1.3",
"pkg": "^4.4.3",
"proxyquire": "^2.1.0",
"semantic-release": "^19.0.2",
"sinon": "^4.5.0"
},
"eslintConfig": {
"extends": "plugin:@lifeomic/node/recommended"
},
"publishConfig": {
"access": "public"
},
"pkg": {
"scripts": "lib/**/*.js"
}
}