forked from lifeomic/alpha
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
106 lines (106 loc) · 2.55 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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
{
"name": "@beforeyoubid/alpha",
"version": "4.0.1",
"description": "Unified client for HTTP services.",
"main": "src/index.js",
"types": "src/index.d.ts",
"author": "LifeOmic <[email protected]>",
"license": "MIT",
"engines": {
"node": ">=12"
},
"files": [
"src/**/*.d.ts",
"src/**/*.js"
],
"repository": {
"type": "git",
"url": "https://github.com/beforeyoubid/alpha.git"
},
"scripts": {
"coverage": "nyc report --reporter=text-lcov > ./.nyc_output/lcov.info",
"buildGrammar": "nearleyc src/adapters/helpers/lambdaURL.ne -o src/adapters/helpers/lambdaURLGrammar.js",
"lint": "eslint .",
"postlint": "yarn tsc",
"lint:fix": "eslint --fix .",
"prepare": "yarn buildGrammar",
"pretest": "yarn buildGrammar && yarn lint",
"test": "nyc ava",
"prepublishOnly": "yarn clean && yarn prepare && yarn tsc -p tsconfig.build.json",
"clean": "yarn tsc --build --clean"
},
"ava": {
"verbose": true,
"extensions": [
"js",
"ts"
],
"files": [
"test/**/*.test.[jt]s"
],
"require": [
"ts-node/register/transpile-only",
"./test/setup.js"
],
"timeout": "30s"
},
"eslintConfig": {
"extends": "plugin:@lifeomic/node/recommended"
},
"eslintIgnore": [
"/lib/",
"src/adapters/helpers/lambdaURLGrammar.js"
],
"nyc": {
"check-coverage": true,
"exclude": [
"src/adapters/helpers/lambdaURLGrammar.js"
],
"include": [
"src"
],
"lines": 100,
"statements": 100,
"functions": 100,
"branches": 100
},
"devDependencies": {
"@lifeomic/eslint-plugin-node": "^2.0.1",
"@lifeomic/typescript-config": "^1.0.3",
"@types/aws-lambda": "^8.10.93",
"@types/node": "^14.14.25",
"@types/sinon": "^10.0.11",
"ava": "^3.15.0",
"aws-sdk": "^2.1001.0",
"aws-sdk-mock": "^4.0.0",
"axios": "^0.24.0",
"coveralls": "^3.1.0",
"docker-lambda": "^0.15.3",
"eslint": "^7.19.0",
"husky": "^4.3.8",
"nock": "^13.0.7",
"nyc": "^15.1.0",
"proxyquire": "^2.1.3",
"sinon": "^9.2.4",
"ts-node": "^10.7.0",
"typescript": "^4.6.3"
},
"dependencies": {
"@types/lodash": "^4.14.181",
"@types/nearley": "^2.11.2",
"@types/url-parse": "^1.4.8",
"@types/uuid": "^8.3.4",
"lodash": "^4.17.21",
"nearley": "2",
"url-parse": "^1.5.10",
"uuid": "^8.3.2"
},
"peerDependencies": {
"aws-sdk": ">=2.1001.0",
"axios": "<= 0.26.1 & >=0.24",
"docker-lambda": "^0.15.3"
},
"publishConfig": {
"access": "public"
}
}