-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
41 lines (41 loc) · 977 Bytes
/
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
{
"name": "deepstream-react",
"version": "0.0.1",
"description": "React Hooks for Deepstream",
"main": "src/index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/nxtedition/deepstream-react.git"
},
"author": "Boffins Technologies",
"license": "ISC",
"bugs": {
"url": "https://github.com/nxtedition/deepstream-react/issues"
},
"homepage": "https://github.com/nxtedition/deepstream-react#readme",
"peerDependencies": {
"@nxtedition/deepstream.io-client-js": "9.x",
"jsonwebtoken": "8.5.x",
"react": ">= 16.8.6",
"react-dom": ">= 16.8.6"
},
"lint-staged": {
"*.js": [
"prettier --single-quote --no-semi --write",
"git add"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"devDependencies": {
"husky": "2.1.0",
"lint-staged": "8.1.5",
"prettier": "1.17.0"
}
}