-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
61 lines (61 loc) · 1.66 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
{
"name": "package-name",
"version": "0.0.1",
"description": "npm 方法 工具包 模板",
"author": "ruihuag",
"module": "lib/index.esm.js",
"main": "lib/index.js",
"unpkg": "/lib/",
"deliver": "/lib/",
"typings": "lib/index.d.ts",
"license": "MIT",
"scripts": {
"test": "ts-node-dev --respawn --transpile-only ./test/index.ts",
"build": "npx rollup -c ./config/rollup.build.ts",
"prepare": "husky install",
"commitlint": "commitlint -e"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -e $HUSKY_GIT_PARAMS"
}
},
"repository": {
"type": "git",
"url": "[email protected]:guanruihua/npm-util-template.git"
},
"files": [
"package.json",
"README.md",
"LICENSE"
],
"bugs": "https://github.com/guanruihua/npm-util-template/issues",
"homepage": "",
"keywords": [],
"devDependencies": {
"@commitlint/cli": "^17.1.2",
"@commitlint/config-conventional": "^17.1.0",
"@rollup/plugin-babel": "^6.0.3",
"@rollup/plugin-commonjs": "^23.0.5",
"@rollup/plugin-node-resolve": "^15.0.1",
"@swc/core": "^1.3.23",
"@swc/wasm": "^1.3.23",
"@types/node": "^18.11.2",
"@typescript-eslint/eslint-plugin": "^5.40.1",
"@typescript-eslint/parser": "^5.40.1",
"eslint": "^8.25.0",
"eslint-plugin-prettier": "^4.2.1",
"husky": "^8.0.1",
"jest": "^29.2.1",
"node-notifier": "^10.0.1",
"prettier": "^2.7.1",
"rollup": "^2.79.1",
"rollup-plugin-eslint": "^7.0.0",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-typescript2": "^0.32.1",
"ts-node": "^10.9.1",
"ts-node-dev": "^1.1.8",
"typescript": "^4.8.4",
"unit-testing-js": "0.3.3"
}
}