-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
54 lines (54 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
43
44
45
46
47
48
49
50
51
52
53
54
{
"name": "tree-kit",
"version": "0.8.7",
"description": "Tree utilities which provides a full-featured extend and object-cloning facility, and various tools to deal with nested object structures.",
"main": "lib/tree.js",
"directories": {
"test": "test",
"bench": "bench"
},
"engines": {
"node": ">=16.13.0"
},
"devDependencies": {
"browserify": "^17.0.0",
"uglify-es": "^3.3.9"
},
"scripts": {
"test": "tea-time -R dot"
},
"repository": {
"type": "git",
"url": "https://github.com/cronvel/tree-kit.git"
},
"keywords": [
"tree",
"extend",
"clone",
"prototype",
"inherit",
"deep",
"diff",
"mask"
],
"author": "Cédric Ronvel",
"license": "MIT",
"bugs": {
"url": "https://github.com/cronvel/tree-kit/issues"
},
"config": {
"tea-time": {
"coverDir": [
"lib"
]
}
},
"copyright": {
"title": "Tree Kit",
"years": [
2014,
2021
],
"owner": "Cédric Ronvel"
}
}