forked from kitze/mobx-router
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
73 lines (73 loc) · 1.76 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
{
"name": "mobx-router",
"version": "0.2.7",
"description": "A simple router for MobX",
"main": "dist/index.js",
"types": "types/index.d.ts",
"files": [
"types/",
"dist/",
"src/",
"test/",
"LICENSE",
"README.md"
],
"scripts": {
"lint": "eslint . --ext .ts,.tsx --ignore-path .gitignore",
"test": "jest",
"build": "del-cli dist && tsc",
"format": "prettier --print-width 80 --tab-width 4 --single-quote --write '{src,tests}/**/*.js'",
"precommit": "lint-staged"
},
"repository": {
"type": "git",
"url": "git+https://github.com/kitze/mobx-router.git"
},
"keywords": [
"kitze",
"mobx",
"router",
"react"
],
"author": "Kitze <[email protected]> (http://kitze.rocks/)",
"license": "ISC",
"bugs": {
"url": "https://github.com/kitze/mobx-router/issues"
},
"homepage": "https://github.com/kitze/mobx-router#readme",
"dependencies": {
"director": "1.2.8",
"query-string": "^6.12.1"
},
"peerDependencies": {
"mobx": "^5.x",
"mobx-react-lite": "^2.x",
"react": ">= 16.8 < 17"
},
"devDependencies": {
"@testing-library/react": "^10.0.3",
"@types/enzyme": "^3.10.5",
"@types/jest": "^25.2.1",
"@typescript-eslint/eslint-plugin": "^2.28.0",
"@typescript-eslint/parser": "^2.28.0",
"del-cli": "^1.1.0",
"eslint": "^6.8.0",
"husky": "^0.14.3",
"jest": "^25.4.0",
"lint-staged": "^6.0.0",
"mobx": "^5.15.4",
"mobx-react-lite": "^2.0.6",
"prettier": "^1.7.4",
"raf": "^3.4.0",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"ts-jest": "^25.4.0",
"typescript": "^3.8.3"
},
"lint-staged": {
"*.js": [
"prettier --print-width 80 --tab-width 4 --single-quote --write",
"git add"
]
}
}