-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
70 lines (70 loc) · 2 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
{
"name": "@lifeomic/alpha",
"version": "0.0.0",
"description": "Unified client for HTTP services.",
"main": "src/index.js",
"types": "src/index.d.ts",
"author": "LifeOmic <development@lifeomic.com>",
"license": "MIT",
"engines": {
"node": ">=14"
},
"files": [
"src/**/*.d.ts",
"src/**/*.js"
],
"repository": {
"type": "git",
"url": "https://github.com/lifeomic/alpha.git"
},
"scripts": {
"buildGrammar": "nearleyc src/utils/lambdaURL.ne -o src/utils/lambdaURLGrammar.ts",
"lint": "eslint .",
"postlint": "yarn tsc",
"lint:fix": "eslint --fix .",
"prepare": "yarn buildGrammar",
"pretest": "yarn prepare && yarn lint",
"test": "jest",
"prepublishOnly": "yarn clean && yarn prepare && yarn tsc -p tsconfig.build.json",
"clean": "yarn tsc --build --clean"
},
"devDependencies": {
"@lifeomic/eslint-config-standards": "3.0.0",
"@lifeomic/typescript-config": "^3.1.0",
"@swc/core": "^1.2.207",
"@swc/jest": "^0.2.21",
"@types/jest": "^28.1.3",
"@types/lodash": "^4.14.181",
"@types/nearley": "^2.11.2",
"@types/node": "^14.14.25",
"@types/url-parse": "^1.4.8",
"@types/uuid": "^8.3.4",
"aws-sdk-client-mock": "^1.0.0",
"conventional-changelog-conventionalcommits": "^4.0.0",
"eslint": "^8.18.0",
"jest": "^28.1.2",
"jest-mock-extended": "^2.0.6",
"nock": "^13.2.8",
"semantic-release": "^19.0.3",
"ts-node": "^10.8.1",
"typescript": "^4.7.4"
},
"dependencies": {
"@aws-crypto/sha256-browser": "^2.0.1",
"@aws-sdk/abort-controller": "^3.110.0",
"@aws-sdk/client-lambda": "^3.118.1",
"@aws-sdk/credential-provider-node": "^3.121.0",
"@aws-sdk/node-http-handler": "^3.118.1",
"@aws-sdk/signature-v4": "^3.110.0",
"@aws-sdk/url-parser": "^3.357.0",
"@types/aws-lambda": "^8.10.101",
"axios": "^1.6.0",
"lodash": "^4.17.21",
"nearley": "2",
"url-parse": "^1.5.10",
"uuid": "^8.3.2"
},
"publishConfig": {
"access": "public"
}
}