-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
41 lines (41 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
{
"name": "redux-flute",
"version": "0.5.01",
"description": "Smart front-end data cache manager",
"main": "dist/index.js",
"scripts": {
"test": "mocha -r babel-core/register",
"test-watch": "mocha -w -r babel-core/register",
"dist": "babel -d dist src",
"dist-watch": "babel -w -d dist src",
"prepublish": "babel -d dist src"
},
"repository": {
"type": "git",
"url": "git+https://github.com/kyleramirez/redux-flute.git"
},
"keywords": [
"models",
"cache"
],
"author": "Kyle Ramirez",
"license": "ISC",
"bugs": {
"url": "https://github.com/kyleramirez/redux-flute/issues"
},
"homepage": "https://github.com/kyleramirez/redux-flute#readme",
"devDependencies": {
"babel-cli": "^6.18.0",
"babel-core": "^6.18.2",
"babel-preset-es2015": "^6.18.0",
"babel-preset-stage-0": "^6.16.0",
"chai": "^3.5.0",
"chai-spies": "^0.7.1",
"mocha": "^3.1.2"
},
"dependencies": {
"es6-promise": "^4.0.5",
"object-diff": "^0.0.4",
"whatwg-fetch": "^1.0.0"
}
}