forked from henrytseng/dataobject-parser
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
59 lines (59 loc) · 1.36 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
57
58
59
{
"name": "dataobject-parser",
"version": "1.1.3",
"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 --recursive test"
},
"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",
"gulp": "^3.9.1",
"gulp-mocha": "^3.0.1",
"gulp-watch": "^4.3.11",
"run-sequence": "^1.2.2"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/Gigzolo/dataobject-parser/issues"
},
"engines": {
"node": ">= 0.8.0"
},
"homepage": "https://github.com/Gigzolo/dataobject-parser"
}