-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.26 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.26 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
{
"name": "immodel",
"version": "0.1.1",
"description": "Simple, extendable models with support for arbitrary nesting and inheritance",
"main": "index.js",
"scripts": {
"test": "mocha"
},
"author": "ashaffer (http://github.com/ashaffer)",
"license": "MIT",
"dependencies": {
"lodash": "^3.1.0",
"component-emitter": "^1.2.0",
"attrs": "git://github.com/immodel/attrs",
"validation": "git://github.com/immodel/validation",
"defaults": "git://github.com/immodel/defaults",
"getter-setter": "git://github.com/immodel/getter-setter",
"methods": "git://github.com/immodel/methods",
"discriminators": "git://github.com/immodel/discriminators",
"required": "git://github.com/immodel/required",
"cast": "git://github.com/immodel/cast",
"types": "git://github.com/immodel/types"
},
"devDependencies": {
"mocha": "^2.1.0",
"chai": "^1.10.0",
"sinon": "^1.12.2",
"sinon-chai": "^2.6.0",
"debug-trace": "^0.2.4"
},
"repository": {
"type": "git",
"url": "http://github.com/immodel/types"
},
"keywords": [
"immodel",
"models",
"model",
"immutable"
],
"bugs": {
"url": "https://github.com/immodel/immodel/issues"
},
"homepage": "https://github.com/immodel/immodel"
}