-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
68 lines (68 loc) · 1.51 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
{
"name": "serverless-tools",
"version": "0.0.15",
"description": "Serverless toolbox",
"repository": {
"type": "git",
"url": "git+https://github.com/vitarn/serverless-tools"
},
"keywords": [
"serverless",
"toolbox",
"typescript"
],
"scripts": {
"build": "tsc",
"test": "jest",
"testing": "jest --watch",
"coverage": "jest --coverage --maxWorkers=4",
"typecheck": "tsc --noEmit",
"release": "standard-version",
"prepack": "tsc --removeComments --inlineSourceMap false | echo shut up"
},
"dependencies": {
"accepts": "^1.3.5",
"content-type": "^1.0.4",
"http-errors": "^1.6.3",
"koa-compose": "^4.0.0",
"koa-is-json": "^1.0.0",
"lodash.get": "^4.4.2",
"lodash.omit": "^4.5.0",
"mime-types": "^2.1.18",
"statuses": "^1.5.0",
"type-is": "^1.6.16"
},
"devDependencies": {
"@koa/cors": "^2.2.1",
"@types/aws-lambda": "^0.0.35",
"@types/http-errors": "^1.6.1",
"@types/jest": "^22.2.2",
"@types/node": "^10.0.3",
"@types/sinon": "^4.3.0",
"jest": "^22.4.3",
"sinon": "^4.5.0",
"standard-version": "^4.3.0",
"ts-jest": "^22.4.2",
"typescript": "^2.8.1"
},
"files": [
"**/*.js",
"**/*.d.ts",
"!**/*.test.*",
"!types/**/*.js"
],
"jest": {
"transform": {
"^.+\\.tsx?$": "ts-jest"
},
"testRegex": "(/__tests__/.*|(\\.|/)(test|spec))\\.(t)sx?$",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json",
"node"
]
}
}