-
Notifications
You must be signed in to change notification settings - Fork 54
/
package.json
53 lines (53 loc) · 1.51 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
{
"name": "react-web3",
"version": "1.2.0",
"description": "",
"main": "./dist/index.js",
"scripts": {
"test": "mocha-webpack --webpack-config webpack.config.js --require test/.setup.js test/**/*.test.js",
"test:watch": "mocha-webpack --watch --webpack-config webpack.config.js --require test/.setup.js test/**/*.test.js",
"build": "webpack --config webpack.config.js",
"build:watch": "webpack --config webpack.config.js --watch",
"prepare": "npm run build"
},
"files": [
"dist"
],
"repository": {
"type": "git",
"url": "https://github.com/coopermaruyama/react-web3"
},
"author": "Cooper Maruyama <me@cooperm.com>",
"license": "ISC",
"dependencies": {
"lodash": "^4.17.11"
},
"peerDependencies": {
"react": ">= 15.6.1",
"prop-types": ">= 15.5.1"
},
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-core": "^6.25.0",
"babel-loader": "^7.1.1",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-polyfill": "^6.23.0",
"babel-preset-env": "^1.6.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-2": "^6.24.1",
"chai": "^4.1.0",
"enzyme": "^2.9.1",
"flow-bin": "^0.51.1",
"jsdom": "^11.1.0",
"mocha": "^3.5.0",
"mocha-webpack": "^1.0.0-rc.1",
"prop-types": "^15.5.10",
"react": "^15.6.1",
"react-dom": "^15.5.4",
"react-test-renderer": "^15.6.1",
"sinon": "^2.4.1",
"webpack": "^3.4.1",
"webpack-node-externals": "^1.6.0"
}
}