-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
56 lines (56 loc) · 1.35 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
{
"name": "treeify-js",
"version": "1.0.8",
"description": "Convert an array to a tree object.",
"main": "dist/treeify.js",
"module": "src/treeify.js",
"unpkg": "dist/treeify.js",
"type": "module",
"directories": {
"example": "examples"
},
"dependencies": {},
"devDependencies": {
"@babel/core": "^7.14.3",
"@babel/preset-env": "^7.14.2",
"@babel/preset-es2015": "^7.0.0-beta.53",
"benchmark": "^2.1.4",
"chai": "^4.3.4",
"eslint": "^7.27.0",
"gulp": "^4.0.2",
"gulp-babel": "^8.0.0",
"gulp-mocha": "^8.0.0",
"gulp-rollup": "^2.17.0",
"gulp-uglify": "^3.0.2",
"rollup": "^2.50.1"
},
"scripts": {
"test": "gulp test",
"build": "gulp"
},
"files": [
"src",
"dist/*.js"
],
"repository": {
"type": "git",
"url": "git+https://github.com/mwc/treeify.git"
},
"keywords": [
"convert",
"array",
"tree",
"treeify",
"array to tree"
],
"author": {
"name": "maowenchao",
"email": "[email protected]",
"url": "https://github.com/mwc"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/mwc/treeify/issues"
},
"homepage": "https://github.com/mwc/treeify#readme"
}