-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1011 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
42
43
{
"name": "@dhmk/react",
"version": "5.1.1",
"description": "Various React.js hooks and components",
"keywords": [
"react",
"hooks",
"components",
"utils"
],
"license": "MIT",
"repository": "github:dhmk083/dhmk-react",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"module": "esm/index.js",
"sideEffects": false,
"files": [
"lib",
"esm"
],
"scripts": {
"preversion": "yarn test && yarn build",
"version": "git add -A",
"postversion": "git push && git push --tags",
"clean": "rm -rf lib esm",
"build": "yarn clean && tsc && tsc -m esnext --outDir esm",
"test": "yarn clean && jest"
},
"devDependencies": {
"@testing-library/react": "^10.0.2",
"@types/jest": "^27.0.2",
"@types/node": "^16.7.10",
"@types/react": "^16.9.25",
"jest": "^27.3.1",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"ts-jest": "^27.0.7",
"typescript": "^4.4.4"
},
"peerDependencies": {
"react": ">=16.8"
}
}