-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
88 lines (88 loc) · 2.35 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
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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
{
"name": "rocon",
"version": "1.2.8",
"description": "A router library",
"main": "lib/index.js",
"module": "esm/index.js",
"types": "lib/index.d.ts",
"scripts": {
"build": "npm-run-all build:ts build:ts_babel build:ts_babel_esm",
"build:ts_babel": "babel src --out-dir lib --extensions '.ts,.tsx'",
"build:ts_babel_esm": "babel --config-file ./babel.config.esm.js src --out-dir esm --extensions '.ts,.tsx'",
"build:ts": "tsc --build",
"commitizen": "git cz",
"release": "standard-version",
"test": "jest",
"test:watch": "jest --watch",
"watch:ts": "tsc --build --watch",
"prepare": "husky install"
},
"files": [
"lib/**/*",
"esm/**/*",
"src/**/*",
"/react.js",
"/react.d.ts",
"!*.tsbuildinfo",
"!*.test.js"
],
"keywords": [
"router",
"react"
],
"author": "uhyo <[email protected]>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/uhyo/rocon.git"
},
"devDependencies": {
"@babel/cli": "^7.15.4",
"@babel/core": "^7.15.5",
"@babel/plugin-proposal-class-properties": "^7.14.5",
"@babel/plugin-proposal-export-namespace-from": "^7.14.5",
"@babel/plugin-transform-runtime": "^7.15.0",
"@babel/preset-env": "^7.15.4",
"@babel/preset-react": "^7.14.5",
"@babel/preset-typescript": "^7.15.0",
"@commitlint/cli": "^13.1.0",
"@commitlint/config-conventional": "^13.1.0",
"@testing-library/jest-dom": "^5.14.1",
"@testing-library/react": "^13.2.0",
"@types/jest": "^27.0.1",
"@types/react": "^18.0.9",
"@typescript-eslint/eslint-plugin": "^4.31.0",
"@typescript-eslint/parser": "^4.31.0",
"babel-jest": "^27.1.0",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"history": "^5.3.0",
"husky": "^7.0.0",
"jest": "^27.1.0",
"lint-staged": "^11.1.2",
"npm-run-all": "^4.1.5",
"prettier": "^2.3.2",
"react": "^18.1.0",
"react-dom": "^18.1.0",
"standard-version": "^9.3.1",
"typescript": "^4.4.2"
},
"lint-staged": {
"*.{js,ts}": [
"eslint --fix",
"prettier --write"
]
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"dependencies": {
"@babel/runtime": "^7.15.4"
},
"peerDependencies": {
"history": "^5.0.0"
}
}