-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
73 lines (73 loc) · 2.26 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
{
"name": "@xituru/typescript-package-boilerplate",
"version": "1.0.2",
"description": "Template starter for creating npm package with typescript",
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"unpkg": "dist/umd/index.js",
"author": "Eries Trisnadi <[email protected]>",
"license": "MIT",
"publishConfig": {
"access": "public"
},
"files": [
"dist"
],
"keywords": [
"typescript",
"npm",
"package",
"boilerplate",
"starter",
"cjs",
"esm",
"umd"
],
"homepage": "https://github.com/xituru/typescript-package-boilerplate",
"repository": {
"type": "git",
"url": "[email protected]:xituru/typescript-package-boilerplate.git"
},
"bugs": {
"url": "https://github.com/xituru/typescript-package-boilerplate/issues"
},
"scripts": {
"build": "run-p build:*",
"build:cjs": "del-cli dist/cjs && tsc -p internal/config/tsconfig.cjs.json",
"build:esm": "del-cli dist/esm && tsc -p internal/config/tsconfig.esm.json",
"build:umd": "del-cli dist/umd && webpack --config internal/webpack.config.js",
"build:types": "del-cli dist/types && tsc -p internal/config/tsconfig.types.json",
"coverage": "jest --coverage --no-cache --runInBand",
"lint": "tslint -p tsconfig.json",
"postinstall": "husky install",
"prepublishOnly": "pinst --disable",
"postpublish": "pinst --enable",
"test": "jest --no-cache --runInBand"
},
"devDependencies": {
"@amanda-mitchell/semantic-release-npm-multiple": "^3.4.0",
"@commitlint/cli": "^17.0.2",
"@commitlint/config-conventional": "^17.0.2",
"@commitlint/types": "^17.0.0",
"@semantic-release/changelog": "^6.0.1",
"@semantic-release/commit-analyzer": "^9.0.2",
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^8.0.4",
"@semantic-release/release-notes-generator": "^10.0.3",
"@types/jest": "^28.1.1",
"del-cli": "^4.0.1",
"husky": "^8.0.1",
"jest": "^28.1.0",
"npm-run-all": "^4.1.5",
"pinst": "^3.0.0",
"prettier": "^2.6.2",
"semantic-release": "^19.0.2",
"ts-jest": "^28.0.4",
"ts-loader": "^9.3.0",
"tslint": "^6.1.3",
"tslint-config-prettier": "^1.18.0",
"typescript": "^4.7.3",
"webpack": "^5.73.0",
"webpack-cli": "^4.9.2"
}
}