-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
53 lines (53 loc) · 1.31 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": "vry",
"version": "3.0.1",
"description": "Define `Model` and `Collection` like types to manage your `Immutable` data structures in a functional way",
"main": "lib/index.js",
"scripts": {
"test": "npm run compile && tape -r babel-register test/index.js | tap-spec",
"compile": "babel ./src -d ./lib",
"prepublish": "npm test"
},
"keywords": [
"immutable",
"model",
"backbone",
"react",
"redux"
],
"author": "JaapRood <[email protected]>",
"repository": {
"type": "git",
"url": "git://github.com/JaapRood/vry.git"
},
"license": "ISC",
"dependencies": {
"immutable": "^3.7.6",
"lodash.assign": "^4.0.9",
"lodash.every": "^4.4.0",
"lodash.foreach": "^4.3.0",
"lodash.functions": "^4.1.1",
"lodash.isarray": "^3.0.4",
"lodash.isfunction": "^3.0.6",
"lodash.isplainobject": "^3.2.0",
"lodash.isstring": "^4.0.1",
"lodash.isundefined": "^3.0.1",
"lodash.keys": "^4.0.7",
"lodash.omit": "^4.5.0",
"lodash.uniqueid": "^3.0.0",
"shortid": "^2.2.4",
"warning": "^3.0.0"
},
"devDependencies": {
"babel-preset-es2015": "^6.3.13",
"babel-cli": "^6.6.5",
"babel-register": "^6.7.2",
"tap-spec": "^4.1.1",
"tape": "^4.4.0"
},
"babel": {
"presets": [
"babel-preset-es2015"
]
}
}