generated from hideokamoto/my-ts-project-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
95 lines (95 loc) · 2.85 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
{
"name": "cloudfront-updator",
"version": "2.1.1",
"description": "Simple Amazon CloudFront distribution updator",
"main": "dist/index.js",
"engines": {
"node": ">=8.16.1 || ^10.13.0 || >=11.10.1"
},
"scripts": {
"prepare": "npm run build",
"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'",
"create:ogp": "npm run create:ogp:dark && npm run create:ogp:light",
"create:ogp:dark": "npx @kamataryo/gh-ogp dark > ogp_dark.png",
"create:ogp:light": "npx @kamataryo/gh-ogp light > ogp_light.png",
"semantic-release": "semantic-release"
},
"keywords": [],
"bugs": {
"url": "https://github.com/wpkyoto/cloudfront-updator/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/wpkyoto/cloudfront-updator.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": "12.1.4",
"@commitlint/config-conventional": "12.1.4",
"@types/jest": "29.5.14",
"@types/node": "14.17.33",
"@typescript-eslint/eslint-plugin": "4.26.1",
"@typescript-eslint/parser": "4.26.1",
"@typescript-eslint/typescript-estree": "4.26.1",
"conventional-changelog-cli": "2.1.1",
"conventional-github-releaser": "3.1.5",
"eslint": "7.28.0",
"eslint-config-standard": "16.0.3",
"eslint-plugin-import": "2.23.4",
"eslint-plugin-node": "11.1.0",
"eslint-plugin-promise": "5.1.0",
"eslint-plugin-standard": "4.1.0",
"husky": "6.0.0",
"jest": "29.7.0",
"lint-staged": "10.5.4",
"rollup": "2.51.1",
"rollup-plugin-typescript2": "0.30.0",
"semantic-release": "17.4.4",
"ts-jest": "29.2.5",
"tslib": "2.2.0",
"typedoc": "0.20.36",
"typescript": "3.9.10"
},
"dependencies": {
"@hideokamoto/sequential-promise": "^1.1.2",
"aws-sdk": "^2.1006.0",
"deep-object-diff": "^1.1.0"
}
}