-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.6 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 1.6 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
{
"name": "jstoolset",
"version": "1.1.0",
"description": "a useful js tool kit",
"main": "dist/main.cjs.js",
"module": "dist/main.esm.js",
"typings": "dist/types/modules/index.d.ts",
"files": [
"dist"
],
"scripts": {
"prepare": "husky install",
"build": "rollup --config",
"test": "jest --no-cache --detectOpenHandles",
"docs": "typedoc --options typedoc.json",
"release": "standard-version --release-as"
},
"author": "wliang",
"license": "ISC",
"keywords": [
"js",
"tool",
"utility",
"toolkit",
"toolset"
],
"repository": "https://github.com/wangliang101/jstoolkit.git",
"bugs": {
"url": "https://github.com/wangliang101/jstoolkit/issues",
"email": "wangliang4468@126.com"
},
"devDependencies": {
"@commitlint/cli": "^17.0.3",
"@commitlint/config-conventional": "^17.0.3",
"@types/jest": "^28.1.6",
"@typescript-eslint/eslint-plugin": "^5.30.7",
"@typescript-eslint/parser": "^5.30.7",
"delay": "^5.0.0",
"eslint": "^8.20.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^8.7.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-prettier": "^4.2.1",
"husky": "^8.0.1",
"jest": "^28.1.3",
"jest-environment-jsdom": "^28.1.3",
"rollup": "^2.77.0",
"rollup-plugin-typescript2": "^0.32.1",
"standard-version": "^9.5.0",
"ts-jest": "^28.0.7",
"tslib": "^2.4.0",
"typedoc": "^0.23.8",
"typedoc-theme-hierarchy": "^3.0.0",
"typescript": "^4.7.4"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
}
}