-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
42 lines (42 loc) · 1 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
{
"name": "arr2tree",
"version": "0.2.1",
"description": "数组转树🌲",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"devDependencies": {
"@types/jest": "^27.1.4",
"jest": "^27.0.0",
"rimraf": "^3.0.2",
"standard-version": "^9.3.2",
"terser": "^5.0.0",
"ts-jest": "^27.0.0",
"typescript": "^4.6.0"
},
"scripts": {
"test": "jest",
"dev": "rimraf dist && tsc -w",
"build": "rimraf dist && tsc && terser dist/index.js -o dist/index.min.js",
"release": "npm run test && npm run build && standard-version && npm pub"
},
"repository": {
"type": "git",
"url": "git+https://any86@github.com/any86/arr2tree.git"
},
"keywords": [
"tree",
"array",
"arr2tree",
"array-to-tree"
],
"author": "any86",
"license": "ISC",
"bugs": {
"url": "https://github.com/any86/arr2tree/issues"
},
"homepage": "https://github.com/any86/arr2tree#readme",
"dependencies": {
"@any86/quick-sort": "^0.0.4",
"tslib": "^2.3.1"
}
}