-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
66 lines (66 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
{
"name": "@lifeomic/alpha-cli",
"version": "0.0.0",
"description": "Curl-like CLI for the Alpha client",
"author": "LifeOmic <[email protected]>",
"license": "MIT",
"files": [
"src/**/*.js"
],
"repository": {
"type": "git",
"url": "https://github.com/lifeomic/alpha-cli.git"
},
"bin": {
"alpha": "src/cli.js"
},
"scripts": {
"prepublishOnly": "tsc -p tsconfig.build.json",
"lint": "eslint .",
"postlint": "tsc",
"pretest": "yarn lint",
"test": "jest",
"clean": "yarn tsc --build --clean; rm -rf tsconfig.build.tsbuildinfo tsconfig.tsbuildinfo"
},
"devDependencies": {
"@aws-sdk/types": "^3.370.0",
"@koa/router": "^12.0.0",
"@lifeomic/eslint-config-standards": "^3.0.0",
"@lifeomic/jest-config": "^1.1.3",
"@lifeomic/typescript-config": "^1.0.3",
"@swc/core": "^1.2.207",
"@swc/jest": "^0.2.21",
"@types/aws-lambda": "^8.10.119",
"@types/glob": "^7.2.0",
"@types/jest": "^28.1.3",
"@types/js-yaml": "^4.0.5",
"@types/koa": "^2.13.4",
"@types/koa-bodyparser": "^4.3.7",
"@types/koa__router": "^12.0.0",
"@types/node": "^16",
"aws-sdk-client-mock": "^1.0.0",
"conventional-changelog-conventionalcommits": "^4.6.3",
"eslint": "^8.18.0",
"jest": "^28.1.1",
"koa": "^2.13.4",
"koa-bodyparser": "^4.3.0",
"semantic-release": "^19.0.2",
"serverless-http": "^3.0.2",
"ts-jest": "^28.0.5",
"ts-node": "^10.8.1",
"typescript": "^4.7.4",
"ulid": "^2.3.0"
},
"dependencies": {
"@aws-sdk/client-sts": "^3.370.0",
"@lifeomic/alpha": "^5.1.3",
"axios": "^0.27.2",
"dotenv": "^16.0.2",
"glob": "^8.0.3",
"js-yaml": "^4.1.0",
"yargs": "^17.5.1"
},
"publishConfig": {
"access": "public"
}
}