forked from autodatadirect/async-ops
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
38 lines (38 loc) · 936 Bytes
/
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
{
"name": "async-operations",
"version": "1.1.9",
"description": "A library for redux saga asynchronous calls",
"main": "./dist/index.js",
"repository": "https://github.com/NetchexDev/async-ops",
"scripts": {
"build": "babel ./src -d ./dist",
"prepare": "npm run build",
"lint": "standard \"./src/**/*.js\" | snazzy"
},
"keywords": [
"ops",
"saga",
"redux",
"async"
],
"author": "Netchex",
"license": "MIT",
"devDependencies": {
"@babel/cli": "7.5.5",
"@babel/core": "7.5.5",
"@babel/plugin-syntax-dynamic-import": "7.2.0",
"@babel/preset-env": "7.5.5",
"@babel/runtime": "7.5.5",
"babel-eslint": "10.0.2",
"babel-plugin-transform-object-rest-spread": "7.0.0-beta.3",
"redux-saga": "^1.1.3",
"snazzy": "7.1.1",
"standard": "13.1.0"
},
"peerDependencies": {
"redux-saga": "0.16.0"
},
"standard": {
"parser": "babel-eslint"
}
}