-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
123 lines (123 loc) · 2.75 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
{
"name": "web3-redux-middleware",
"version": "1.0.3",
"description": "Redux middleware for handling Web3.js PromiEvents",
"repository": {
"type": "git",
"url": "git+https://github.com/roninjin10/web3-redux-middleware.git"
},
"author": "William Cory <[email protected]>",
"contributors": [],
"license": "MIT",
"bugs": {
"url": "https://github.com/roninjin10/web3-redux-middleware/issues"
},
"homepage": "https://github.com/roninjin10/web3-redux-middleware",
"main": "dist/index.js",
"module": "dist/es/index.js",
"engines": {
"node": "~8.10.0",
"npm": ">=5.6.0"
},
"scripts": {
"clean": "rimraf dist",
"build": "npm run clean && mkdir -p dist && babel src -s -D -d dist",
"build-es": "BABEL_ENV=es `npm bin`/babel src -d dist/es",
"build-commonjs": "`npm bin`/babel src -d dist",
"test": "jest",
"lint": "esw -w src test",
"prepare": "npm run build",
"prebuild": "npm run test"
},
"pre-commit": [
"precommit"
],
"keywords": [
"npm",
"redux",
"middleware",
"middlewares",
"promise",
"promises",
"blockchain",
"ethereum",
"web3",
"promiEvents",
"optimistic update",
"optimistic updates",
"async",
"async functions"
],
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.3",
"babel-eslint": "^8.2.3",
"babel-jest": "^21.2.0",
"babel-loader": "^7.1.4",
"babel-polyfill": "^6.26.0",
"babel-preset-env": "^1.7.0",
"babel-preset-es2016": "^6.24.1",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"babel-register": "^6.26.0",
"bluebird": "^3.5.1",
"eslint": "^4.12.1",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-jest": "^21.3.2",
"eslint-watch": "^3.1.3",
"jest": "^21.2.1",
"redux": "^4.0.0",
"supertest": "^3.0.0",
"web3": "^1.0.0-beta.34",
"webpack": "^4.12.0",
"webpack-cli": "^3.0.8"
},
"peerDependencies": {
"redux": "^2.0.0 || ^3.0.0 || ^4.0.0",
"web3": "^1.0.0-beta.34"
},
"babel": {
"presets": [
[
"env",
{
"targets": {
"node": "current"
}
}
]
],
"plugins": [
"transform-object-rest-spread",
"transform-class-properties"
]
},
"eslintConfig": {
"parser": "babel-eslint",
"plugins": [
"import",
"jest"
],
"parserOptions": {
"ecmaVersion": 2017,
"sourceType": "module"
},
"env": {
"node": true,
"jest": true
},
"extends": [
"eslint:recommended"
],
"rules": {
"jest/no-focused-tests": 2,
"jest/no-identical-title": 2
}
},
"jest": {
"testEnvironment": "node"
},
"directories": {
"test": "test"
}
}