-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
64 lines (64 loc) · 1.89 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
{
"name": "deep-tree",
"version": "1.0.1",
"description": "提供一系列对树状数组进行深度遍历操作的方法。",
"main": "lib/deep-tree.cjs.js",
"module": "lib/deep-tree.esm.js",
"browser": "lib/deep-tree.umd.js",
"types": "types.d.ts",
"scripts": {
"build": "rollup -c",
"build:watch": "rollup -c --watch",
"lint": "eslint . --fix",
"test": "jest --verbose --coverage",
"prepare": "husky",
"prepublishOnly": "npm run lint && npm run test && npm run build",
"publish": "npm publish",
"publish:alpha": "npm publish --tag alpha",
"publish:beta": "npm publish --tag beta"
},
"author": "kiccer <1072907338@qq.com>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/kiccer/deep-tree.git"
},
"bugs": {
"url": "https://github.com/kiccer/deep-tree/issues"
},
"homepage": "https://github.com/kiccer/deep-tree",
"devDependencies": {
"@babel/core": "^7.26.0",
"@babel/preset-env": "^7.26.0",
"@eslint/js": "^9.15.0",
"@rollup/plugin-babel": "^6.0.4",
"@rollup/plugin-commonjs": "^28.0.1",
"@rollup/plugin-node-resolve": "^15.3.0",
"@rollup/plugin-terser": "^0.4.4",
"@rollup/plugin-typescript": "^12.1.1",
"@typescript-eslint/eslint-plugin": "^8.15.0",
"@typescript-eslint/parser": "^8.15.0",
"babel-jest": "^29.7.0",
"eslint": "^9.15.0",
"eslint-config-standard": "^17.1.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-jest": "^28.9.0",
"eslint-plugin-n": "^17.14.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^7.1.0",
"globals": "^15.12.0",
"husky": "^9.1.7",
"jest": "^29.7.0",
"jest-extended": "^4.0.2",
"jest-matcher-utils": "^29.7.0",
"lint-staged": "^15.2.10",
"rollup": "^4.27.4",
"tslib": "^2.8.1"
},
"engines": {
"node": ">=18.18.0"
},
"volta": {
"node": "18.20.5"
}
}