-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
87 lines (87 loc) · 2.17 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
{
"name": "aws-api-responsebuilder",
"version": "1.1.0",
"description": "API gateway response builder",
"main": "dist/index.js",
"scripts": {
"prepare": "npm run build",
"build": "rollup -c",
"tsc": "tsc",
"test": "jest",
"doc": "typedoc --out docs libs/ && touch docs/.nojekyll",
"lint": "eslint 'libs/**/*.{ts,tsx}'",
"postversion": "npm run push:tag",
"push:tag": "git push origin $(git describe --abbrev=0 --tags)",
"test:watch": "jest --watch",
"test:dev": "jest --watch --silent=false --verbose false --coverage",
"semantic-release": "semantic-release"
},
"keywords": [
"aws",
"api",
"api gateway"
],
"bugs": {
"url": "https://github.com/wpkyoto/aws-api-responsebuilder/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/wpkyoto/aws-api-responsebuilder.git"
},
"author": "Hidetaka Okamoto <[email protected]> (https://wp-kyoto.net)",
"license": "MIT",
"devDependencies": {
"@types/aws-lambda": "8.10.137",
"@types/jest": "26.0.24",
"@types/node": "10.17.60",
"@typescript-eslint/eslint-plugin": "3.7.0",
"@typescript-eslint/parser": "3.7.0",
"@typescript-eslint/typescript-estree": "3.7.0",
"aws-sdk": "2.720.0",
"eslint": "5.16.0",
"eslint-config-standard": "14.1.1",
"eslint-plugin-import": "2.22.0",
"eslint-plugin-node": "8.0.1",
"eslint-plugin-promise": "4.2.1",
"eslint-plugin-standard": "4.0.1",
"husky": "1.3.1",
"jest": "24.9.0",
"lint-staged": "10.2.11",
"rollup": "2.23.0",
"rollup-plugin-typescript2": "0.27.1",
"semantic-release": "17.1.1",
"ts-jest": "26.1.3",
"typedoc": "0.17.8",
"typescript": "3.9.7"
},
"jest": {
"moduleFileExtensions": [
"ts",
"tsx",
"js"
],
"transform": {
"^.+\\.(ts|tsx)$": "ts-jest"
},
"globals": {
"ts-jest": {
"tsConfig": "tsconfig.json"
}
},
"testMatch": [
"**/__tests__/*.+(ts|tsx|js)",
"**/__tests__/*/*.+(ts|tsx|js)"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.ts": [
"eslint --fix",
"git add"
]
}
}