This repository has been archived by the owner on May 12, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
58 lines (58 loc) · 1.58 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
48
49
50
51
52
53
54
55
56
57
58
{
"name": "web3-sagas",
"version": "0.3.1",
"description": "Redux Sagas for Web3 and Truffle",
"author": "Erik Marks <rekmarks@protonmail.com>",
"homepage": "https://github.com/rekmarks/web3-sagas#readme",
"license": "MIT",
"main": "index.js",
"scripts": {
"test": "npm run build && jest",
"test-inspect": "node --inspect-brk ./node_modules/.bin/jest -i",
"clean": "rm -rf dist/*",
"transpile": "npx babel src -d dist --source-maps",
"build": "npm run clean && npm run transpile",
"prepare": "npm run test"
},
"dependencies": {
"@babel/runtime": "^7.3.1",
"chain-end": "^0.7.0",
"redux": "^4.0.1",
"redux-saga": "^1.0.1",
"tar": "^4.4.8",
"uuid": "^3.3.2"
},
"devDependencies": {
"@babel/cli": "^7.2.3",
"@babel/core": "^7.2.2",
"@babel/plugin-proposal-class-properties": "^7.3.4",
"@babel/plugin-transform-runtime": "^7.2.0",
"@babel/preset-env": "^7.3.1",
"@redux-saga/testing-utils": "^1.0.1",
"babel-eslint": "^10.0.1",
"babel-jest": "^24.1.0",
"babel-preset-minify": "^0.5.0",
"eslint": "^5.13.0",
"eslint-plugin-jest": "^22.2.2",
"eslint-plugin-json": "^1.3.2",
"eslint-plugin-react": "^7.12.4",
"events": "^3.0.0",
"jest": "^24.1.0",
"redux-saga-test-plan": "^4.0.0-beta.2"
},
"repository": {
"type": "git",
"url": "git+https://github.com/rekmarks/web3-sagas.git"
},
"keywords": [
"web3",
"truffle",
"ethereum",
"redux",
"redux-saga",
"smart contracts"
],
"bugs": {
"url": "https://github.com/rekmarks/web3-sagas/issues"
}
}