-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 1.32 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
{
"name": "butter-sagas-provider",
"version": "0.0.1",
"description": "Put a provider in, get sagas and actions out",
"main": "index.js",
"repository": "https://github.com/butterproviders/butter-sagas-provider",
"author": "Niv Sardi <[email protected]>",
"license": "GPLv3.0",
"dependencies": {
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-function-bind": "^6.22.0",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-preset-env": "^1.7.0",
"butter-provider": "^0.9.7",
"cache-base": "^4.0.0",
"redux-actions": "^2.4.0",
"redux-saga": "^0.16.0"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"butter-mock-provider": "butterproviders/butter-mock-provider",
"butter-provider-vodo": "butterproviders/butter-provider-vodo",
"expect": "^23.2.0",
"mocha": "^5.2.0",
"redux": "^4.0.0",
"redux-mock-store": "^1.5.3",
"rimraf": "^2.6.2",
"standard": "^11.0.1"
},
"scripts": {
"start": "npm run test:watch",
"test": "mocha",
"test:watch": "npm run test -- --watch",
"test:coverage": "nyc --reporter=lcov npm test -- --reporter dot && nyc report",
"lint": "standard --env mocha",
"build": "rimraf lib/*; babel src/ -d lib/ -s",
"build:watch": "npm run build -- -w",
"prepublish": "npm run build"
}
}