forked from bahmutov/redux-vs-rethinkdb
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1.04 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
{
"name": "redux-vs-rethinkdb",
"version": "1.0.0",
"description": "Immutable Redux \"store\" is just a database",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "precompile",
"redux": "node dist/redux-example.compiled.for.5.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/bahmutov/redux-vs-rethinkdb.git"
},
"private": true,
"keywords": [
"redux",
"store",
"database",
"rethinkdb"
],
"author": "Gleb Bahmutov <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/bahmutov/redux-vs-rethinkdb/issues"
},
"homepage": "https://github.com/bahmutov/redux-vs-rethinkdb#readme",
"devDependencies": {
"pre-compiled": "1.3.2"
},
"config": {
"pre-compiled": {
"dir": "dist",
"files": [
"src/redux-example.js"
],
"node": [
"5"
]
}
},
"dependencies": {
"pick-precompiled": "1.0.2",
"redux": "3.3.0",
"rethinkdb": "2.2.1"
}
}