-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.23 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.23 KB
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
{
"name": "tsproject-template",
"version": "1.2.0",
"description": "A simple TypeScript project structure template",
"main": "dist/index.js",
"types": "index.d.ts",
"scripts": {
"test": "jest",
"changelog": "auto-changelog -p",
"changelog-debug": "auto-changelog -p --template json --output changelog-data.json",
"type": "tsc --declaration --emitDeclarationOnly --outFile index.d.ts",
"build": "npx tsc && npm run type"
},
"repository": {
"type": "git",
"url": "git+https://github.com/MakeShiftArtist/tsproject-template.git"
},
"keywords": [
"template",
"typescript",
"structure"
],
"author": "",
"license": "CC0-1.0",
"bugs": {
"url": "https://github.com/MakeShiftArtist/tsproject-template/issues"
},
"homepage": "https://github.com/MakeShiftArtist/tsproject-template#readme",
"devDependencies": {
"@types/jest": "^27.5.1",
"@types/node": "^17.0.35",
"auto-changelog": "^2.4.0",
"jest": "^28.1.0",
"ts-jest": "^28.0.3",
"ts-node": "^10.8.0",
"typescript": "^4.7.2"
},
"auto-changelog": {
"template": "changelog-template.hbs",
"hideEmptyReleases": true,
"commitLimit": false,
"unreleased": true,
"replaceText": {
"[Ff]eat:": "",
"[Ff]ix:": "",
"[Bb]reak:": "",
"[Dd]oc:": ""
}
}
}