This repository has been archived by the owner on Oct 14, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
78 lines (78 loc) · 2.13 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
{
"name": "react-use-wavelet",
"version": "0.2.2",
"description": "Easily use Perlin Wavelet smart contracts in your React app",
"src": "src/index.js",
"main": "dist/react-use-wavelet.js",
"module": "dist/react-use-wavelet.mjs",
"browser": "dist/react-use-wavelet.umd.js",
"author": "Ryan Swart",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/perlin-network/react-use-wavelet"
},
"scripts": {
"prepublishOnly": "npm run build",
"lint": "eslint src",
"test": "jest --verbose --coverage --silent --testPathIgnorePatterns='examples.*'",
"test:watch": "jest --watch --runInBand --silent",
"prebuild": "npm run lint && npm t && rimraf dist",
"build": "rollup -c",
"dev": "rollup -c -w"
},
"peerDependencies": {
"react": "^16.8.0",
"wavelet-client": "^1.1.0"
},
"files": [
"dist"
],
"keywords": [
"react-hooks",
"hooks",
"react",
"utils",
"lib",
"wavelet",
"perlin"
],
"devDependencies": {
"@babel/core": "^7.5.5",
"@babel/plugin-transform-runtime": "^7.5.5",
"@babel/preset-env": "^7.5.5",
"@babel/preset-react": "^7.0.0",
"@testing-library/react": "^8.0.5",
"@testing-library/react-hooks": "^1.1.0",
"babel-core": "^6.26.3",
"babel-jest": "^23.6.0",
"babel-polyfill": "^6.26.0",
"codecov": "^3.5.0",
"eslint": "^5.16.0",
"eslint-config-standard": "^13.0.1",
"eslint-plugin-import": "^2.18.0",
"eslint-plugin-node": "^9.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-react": "^7.14.2",
"eslint-plugin-react-hooks": "^1.6.1",
"eslint-plugin-standard": "^4.0.0",
"jest": "^24.8.0",
"jest-dom": "^4.0.0",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"react-test-renderer": "^16.8.6",
"react-testing-library": "^8.0.1",
"rimraf": "^2.6.3",
"rollup": "^1.17.0",
"rollup-plugin-babel": "^4.3.3",
"rollup-plugin-commonjs": "^10.0.1",
"rollup-plugin-json": "^4.0.0",
"rollup-plugin-node-resolve": "^5.2.0",
"wavelet-client": "^1.0.10"
},
"jest": {
"setupFiles": [
"<rootDir>/jest.init.js"
]
}
}