forked from okunishinishi/node-objnest
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1022 Bytes
/
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
{
"name": "objnest",
"version": "5.1.1",
"description": "Convert nested object to flatten or expand.",
"main": "lib",
"browser": "shim/browser",
"scripts": {
"test": "node ./ci/test.js",
"prepare": "node ./ci/build.js && node ./ci/shim.js",
"prepublish": "npm test"
},
"repository": "okunishinishi/node-objnest",
"keywords": [
"object",
"nested"
],
"author": {
"name": "Taka Okunishi",
"url": "http://okunishitaka.com"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/okunishinishi/node-objnest/issues"
},
"homepage": "https://github.com/okunishinishi/node-objnest#readme",
"dependencies": {
"@babel/runtime": "^7.12.5",
"abind": "^1.0.5",
"extend": "^3.0.2"
},
"devDependencies": {
"ababel": "^6.1.5",
"amocha": "^7.1.1",
"ape-releasing": "^5.0.7",
"ape-tasking": "^4.0.12",
"ape-tmpl": "^6.0.14",
"ape-updating": "^5.0.3",
"coz": "^7.2.1"
},
"engines": {
"node": ">=8",
"npm": ">=5"
}
}