-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
67 lines (67 loc) · 1.57 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
{
"name": "@geut/swarm-hooks",
"version": "1.0.0-beta.11",
"description": "Swarm hooks",
"main": "dist/esm/index.js",
"module": "dist/esm/index.js",
"files": [
"dist",
"broadcast.js",
"swarm-provider.js",
"swarm.js"
],
"scripts": {
"build": "npm run clean && babel ./src --out-dir ./dist/esm --ignore \"**/*.test.js\"",
"clean": "rimraf dist",
"lint": "standard",
"precommit": "lint-staged",
"prepublishOnly": "npm run build"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.js": "npm run lint"
},
"dependencies": {
"buffer-json-encoding": "^1.0.2",
"use-deep-compare-effect": "^1.6.1"
},
"devDependencies": {
"@babel/cli": "^7.12.1",
"@babel/core": "^7.12.1",
"@babel/plugin-proposal-class-properties": "^7.12.1",
"@babel/plugin-proposal-export-default-from": "^7.12.1",
"@babel/plugin-transform-runtime": "^7.12.1",
"@babel/preset-env": "^7.12.1",
"@babel/preset-react": "^7.12.1",
"babel-eslint": "^10.1.0",
"babel-loader": "^8.0.0",
"babel-plugin-add-module-exports": "^1.0.0",
"husky": "^4.3.0",
"lint-staged": "^10.5.0",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"rimraf": "^3.0.2",
"standard": "^15.0.0"
},
"peerDependencies": {
"@geut/discovery-swarm-webrtc": "^4.2.1",
"react": "^17.0.1",
"react-dom": "^17.0.1"
},
"publishConfig": {
"access": "public"
},
"standard": {
"parser": "babel-eslint",
"ignore": [
"dist"
],
"env": [
"browser"
]
}
}