-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
60 lines (60 loc) · 1.23 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
60
{
"name": "cherrypie.js",
"description": "Populate/desolate (alias convert) a Rich Model Object from/to JSON",
"keywords": [
"model",
"modeler",
"tool",
"converter",
"generator",
"json",
"pojo",
"rich-model",
"cherry",
"cherrypie",
"schema",
"mapper",
"mapping",
"jsontool",
"filter",
"object",
"parse",
"parser"
],
"version": "1.5.0",
"author": "Heinz Romirer <[email protected]>",
"contributors": [
{
"name": "Heinz Romirer",
"email": "[email protected]"
},
{
"name": "Martin Groller",
"email": "[email protected]"
}
],
"scripts": {
"test": "istanbul cover ./node_modules/mocha/bin/_mocha",
"coveralls": "cat ./coverage/lcov.info | ./node_modules/.bin/coveralls"
},
"main": "./index",
"devDependencies": {
"coveralls": "^2.11.8",
"istanbul": "^0.4.2",
"mocha": "*",
"mocha-jshint": "0.0.7",
"mocha-lcov-reporter": "^1.2.0",
"should": "*"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "git://github.com/herom/cherrypie.js.git"
},
"bugs": {
"url": "https://github.com/herom/cherrypie.js/issues"
},
"dependencies": {
"lodash": "^4.6.1"
}
}