-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 1022 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/atom-react",
"version": "0.0.3",
"description": "React bindings for @dhmk/atom",
"keywords": [
"atom",
"observer",
"react"
],
"license": "MIT",
"repository": "github:dhmk083/dhmk-atom-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"
},
"peerDependencies": {
"@dhmk/atom": "^0.0.1",
"react": ">=16.8.0"
},
"devDependencies": {
"@dhmk/atom": "^0.0.1",
"@testing-library/react": "^11.2.2",
"@types/jest": "^26.0.19",
"@types/react": "^17.0.0",
"jest": "^26.6.3",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"ts-jest": "^26.4.4",
"typescript": "^4.6.2"
}
}