-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
41 lines (41 loc) · 1.04 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
{
"name": "@cactuslab/usepubsub",
"version": "1.0.2",
"description": "",
"author": "karlvr",
"license": "MIT",
"repository": "cactuslab/usepubsub",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"engines": {
"node": ">=8",
"npm": ">=5"
},
"scripts": {
"test": "cross-env CI=1 react-scripts test --env=jsdom",
"test:watch": "react-scripts test --env=jsdom",
"build": "tsc",
"start": "tsc --watch",
"prepare": "npm run build",
"predeploy": "cd example && npm install && npm run build",
"deploy": "gh-pages -d example/build"
},
"dependencies": {},
"peerDependencies": {
"react": "^16.9.0"
},
"devDependencies": {
"@babel/core": "^7.2.2",
"@babel/runtime": "^7.3.1",
"@testing-library/react-hooks": "^3.2.1",
"@types/jest": "^23.3.13",
"@types/react": "^16.7.22",
"cross-env": "^7.0.3",
"gh-pages": "^2.0.1",
"react": "^16.9.0",
"react-scripts": "^3.4.4",
"react-test-renderer": "^16.9.0",
"tslib": "^2.0.1",
"typescript": "^4.1.3"
}
}