forked from henrytseng/dataobject-parser
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.23 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.23 KB
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
{
"name": "dataobject-parser",
"version": "1.0.6",
"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": "./node_modules/.bin/mocha --bail"
},
"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]"
}
],
"dependencies": {
"lodash": "~2.4.1"
},
"devDependencies": {
"mocha": "1.8.1",
"should": "1.2.1"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/Gigzolo/dataobject-parser/issues"
},
"engines": {
"node": ">= 0.8.0"
},
"homepage": "https://github.com/Gigzolo/dataobject-parser"
}