generated from hideokamoto/my-ts-project-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
91 lines (91 loc) · 2.56 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
{
"name": "lambda-edge-controller",
"version": "1.2.1",
"description": "Simple Lambda@edge function controller",
"main": "dist/index.js",
"engines": {
"node": "^10.13.0 || >=11.10.1"
},
"scripts": {
"build": "rollup -c",
"tsc": "tsc",
"test": "jest",
"lint": "eslint 'libs/*.ts'",
"doc": "typedoc --out docs libs/ && touch docs/.nojekyll",
"test:watch": "jest --watch",
"test:dev": "jest --watch --silent=false --verbose false --coverage",
"postversion": "npm run push:tag && npm run create:release && npm run create:changelog",
"push:tag": "git push origin $(git describe --abbrev=0 --tags)",
"create:release": "conventional-github-releaser -p angular",
"create:changelog": "conventional-changelog -p angular -i CHANGELOG.md -s -r 0 && git add CHANGELOG.md && git commit -m 'docs: update changelog'"
},
"keywords": [],
"bugs": {
"url": "https://github.com/hideokamoto/lambda-edge-controller/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/hideokamoto/lambda-edge-controller.git"
},
"author": "Hidetaka Okamoto <[email protected]> (https://wp-kyoto.net)",
"license": "MIT",
"jest": {
"moduleFileExtensions": [
"ts",
"js"
],
"transform": {
"^.+\\.(ts|tsx)$": "ts-jest"
},
"globals": {
"ts-jest": {
"tsConfig": "tsconfig.json"
}
},
"testMatch": [
"**/__tests__/*.+(ts|js)"
]
},
"lint-staged": {
"*.ts": [
"eslint --fix",
"git add"
]
},
"publishConfig": {
"access": "public"
},
"devDependencies": {
"@commitlint/cli": "8.3.5",
"@commitlint/config-conventional": "8.3.4",
"@types/bunyan": "1.8.6",
"@types/bunyan-format": "0.2.0",
"@types/jest": "24.0.18",
"@types/node": "12.7.3",
"@typescript-eslint/eslint-plugin": "2.0.0",
"@typescript-eslint/parser": "2.0.0",
"@typescript-eslint/typescript-estree": "2.0.0",
"conventional-changelog-cli": "2.0.23",
"conventional-github-releaser": "3.1.3",
"eslint": "6.3.0",
"eslint-config-standard": "14.1.0",
"eslint-plugin-import": "2.18.2",
"eslint-plugin-node": "9.2.0",
"eslint-plugin-promise": "4.2.1",
"eslint-plugin-standard": "4.0.1",
"husky": "3.0.5",
"jest": "24.9.0",
"lint-staged": "9.2.5",
"rollup": "1.20.3",
"rollup-plugin-typescript2": "0.24.0",
"ts-jest": "24.0.2",
"tslib": "1.10.0",
"typedoc": "0.15.0",
"typescript": "3.6.2"
},
"dependencies": {
"aws-sdk": "^2.1003.0",
"bunyan": "^1.8.12",
"bunyan-format": "^0.2.1"
}
}