-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 2.3 KB
/
package.json
File metadata and controls
67 lines (67 loc) · 2.3 KB
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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
{
"name": "react-tapable",
"version": "1.0.6",
"description": "React's subscription publication library",
"source": "src/index.ts",
"main": "lib/index.js",
"module": "lib/index.esm.js",
"types": "lib/index.d.ts",
"unpkg": "lib/index.umd.js",
"scripts": {
"build:clear": "yarn run clear && yarn run build",
"dev:clear": "yarn run clear && yarn run dev",
"build": "microbundle --define process.env.NODE_ENV=production --sourcemap false --jsx React.createElement --tsconfig ./tsconfig.json",
"dev": "microbundle --define process.env.NODE_ENV=development --sourcemap true --jsx React.createElement --tsconfig ./tsconfig.json",
"watch": "microbundle watch --define process.env.NODE_ENV=development --sourcemap true --jsx React.createElement --tsconfig ./tsconfig.json",
"clear": "rm -rf lib",
"commit": "git-cz",
"lint-ts": "tslint -c tslint.json 'src/**/*.ts'",
"test": "jest --collect-coverage --silent",
"release-major": "yarn build:clear && yarn test && standard-version --release-as major",
"release-minor": "yarn build:clear && yarn test && standard-version --release-as minor",
"release-patch": "yarn build:clear && yarn test && standard-version --release-as patch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/TyrealHu/react-tapable.git"
},
"keywords": [
"react",
"tapable"
],
"author": "tyrealhu",
"license": "MIT",
"bugs": {
"url": "https://github.com/TyrealHu/react-tapable/issues"
},
"homepage": "https://github.com/TyrealHu/react-tapable#readme",
"devDependencies": {
"@commitlint/cli": "^16.3.0",
"@commitlint/config-conventional": "^16.2.4",
"@testing-library/react-hooks": "^8.0.1",
"@types/jest": "^24.1.0",
"@types/react": "^17.0.1",
"cz-conventional-changelog": "^3.0.0",
"jest": "^24.1.0",
"microbundle": "^0.12.3",
"prettier": "^2.0.0",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"react-test-renderer": "^17.0.1",
"ts-jest": "^26.0.0",
"ts-node": "^10.9.1",
"tslint": "^5.14.0",
"typescript": "^3.4.5",
"standard-version": "^9.5.0"
},
"peerDependencies": {
"react": ">=17.0.1",
"react-dom": ">=17.0.1",
"typescript": ">=3.9.0"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
}
}