forked from henrytseng/dataobject-parser
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.19 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
{
"name": "dataobject-parser",
"version": "1.2.22",
"description": "A nodejs module designed to parse an Object hash transposing between dot-notation and a structured heirarchy of Objects/Arrays. ",
"main": "lib/utils/dataobject-parser.js",
"scripts": {
"test": "jest"
},
"repository": {
"type": "git",
"url": "https://github.com/Gigzolo/dataobject-parser.git"
},
"keywords": [
"dataobject",
"transpose",
"heirarchy",
"flat",
"dot-notation",
"dot notation"
],
"author": "Andrew Baez <[email protected]>",
"contributors": [
{
"name": "Andrew Baez",
"email": "[email protected]"
},
{
"name": "Joanne Daudier",
"email": "[email protected]"
},
{
"name": "Henry Tseng",
"email": "[email protected]"
},
{
"name": "David Pate",
"email": "[email protected]"
}
],
"license": "MIT",
"bugs": {
"url": "https://github.com/Gigzolo/dataobject-parser/issues"
},
"engines": {
"node": ">= 0.8.0"
},
"homepage": "https://github.com/Gigzolo/dataobject-parser",
"devDependencies": {
"jest": "^29.7.0",
"lodash": "^4.17.21",
"should": "^13.2.3"
}
}