-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
96 lines (96 loc) · 2.44 KB
/
package.json
File metadata and controls
96 lines (96 loc) · 2.44 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
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
96
{
"name": "@template-pro/ts-library",
"version": "0.0.1",
"preview": true,
"description": "The TypeScript library template",
"main": "./dist/index.js",
"module": "./dist/index.esm.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"require": "./dist/index.js",
"import": "./dist/index.esm.js",
"types": "./dist/index.d.ts"
}
},
"files": [
"dist"
],
"scripts": {
"start": "nodemon",
"lint": "eslint src/**/*.ts",
"lint:fix": "eslint src/**/*.ts --fix",
"test": "jest --coverage",
"test:watch": "jest --watch",
"prebuild": "npm run clean",
"clean": "rimraf dist types",
"build": "rollup -c",
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s -r 0",
"docs": "typedoc",
"release": "release-it --ci",
"release:beta": "release-it --preReleaseId=beta --preRelease --ci",
"release:minor": "release-it minor --ci",
"release:minor:beta": "release-it minor --preReleaseId=beta --preRelease --ci",
"cm": "git-commit"
},
"keywords": [
"template",
"typescript",
"jest"
],
"author": {
"name": "Wxh16144",
"email": "[email protected]",
"url": "https://github.com/wxh16144"
},
"license": "ISC",
"devDependencies": {
"@rollup/plugin-buble": "^0.21.3",
"@types/jest": "^26.0.23",
"@wuxh/commitlint-config": "0.0.2",
"@wuxh/commitzen-config": "0.0.3",
"@wuxh/eslint-config-ts": "0.0.3",
"commitizen": "~4.2.2",
"commitlint": "~11.0.0",
"conventional-changelog-cli": "^2.1.1",
"cz-customizable": "~6.3.0",
"eslint": "^7.27.0",
"esno": "*",
"husky": "~4.3.4",
"jest": "^27.0.1",
"jsdom": "16.6.0",
"jsdom-global": "3.0.2",
"lint-staged": "^10.2.9",
"nodemon": "^2.0.7",
"release-it": "^13.6.5",
"rimraf": "^3.0.2",
"rollup": "^2.61.1",
"rollup-plugin-dts": "^4.0.1",
"rollup-plugin-esbuild": "^4.2.3",
"rollup-plugin-terser": "^7.0.2",
"ts-jest": "^27.0.0",
"typedoc": "^0.22.10",
"typescript": "^4.2.4"
},
"commitlint": {
"extends": "@wuxh/commitlint-config"
},
"config": {
"cz-customizable": {
"config": "./node_modules/@wuxh/commitzen-config"
}
},
"husky": {
"hooks": {
"commit-msg": "commitlint -e $HUSKY_GIT_PARAMS",
"pre-commit": "lint-staged",
"pre-push": "npm run test"
}
},
"lint-staged": {
"src/**/*.{ts}": [
"npm run lint:fix",
"git add"
]
}
}