-
Notifications
You must be signed in to change notification settings - Fork 56
/
package.json
43 lines (43 loc) · 1.03 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
{
"name": "freezer-js",
"version": "0.14.1",
"description": "A tree data structure that is always updated from the root, making easier to think in a reactive way.",
"main": "freezer.js",
"homepage": "https://github.com/arqex/freezer",
"scripts": {
"test": "node ./node_modules/mocha/bin/mocha tests",
"build": "node ./node_modules/gulp/bin/gulp.js"
},
"repository": {
"type": "git",
"url": "https://github.com/arqex/freezer.git"
},
"keywords": [
"react",
"reactive",
"store",
"flux",
"state",
"cursor",
"tree",
"immutable"
],
"author": "arqex",
"license": "MIT",
"bugs": {
"url": "https://github.com/arqex/freezer/issues"
},
"devDependencies": {
"benchmark": "~1.0.0",
"chai": "~2.0.0",
"gulp": "~3.8.11",
"gulp-insert": "~0.4.0",
"gulp-rename": "~1.2.0",
"gulp-uglify": "^1.5.3",
"immutable": "~3.6.2",
"mocha": "^2.4.5",
"tape": "^4.4.0",
"unit.js": "~1.0.2"
},
"dependencies": {}
}