-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 1.03 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
{
"name": "@plumcode/react-events",
"version": "0.4.3",
"main": "index.js",
"types": "index.d.ts",
"keywords": [
"react",
"event",
"react-events",
"listener",
"emitter",
"subject",
"observer",
"subscribe"
],
"author": "plumcode",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/plumcoding/react-events.git"
},
"bugs": {
"url": "https://github.com/plumcoding/react-events/issues"
},
"scripts": {
"clean": "rm -rf dist",
"pullVersion": "read -p 'Next version type [major|minor|patch]: ' package_version_type && npm version ${package_version_type}",
"build": "tsc && cat package.json | jq 'del(.scripts)' > dist/package.json && cp README.md dist/",
"deploy": "yarn pullVersion && yarn build && yarn publish --non-interactive dist"
},
"publishConfig": {
"access": "public",
"tag": "beta"
},
"peerDependencies": {
"react": "^16.8.0"
},
"devDependencies": {
"@types/react": "^17.0.24",
"typescript": "^4.4.3"
}
}