-
Notifications
You must be signed in to change notification settings - Fork 48
/
Copy pathpackage.json
92 lines (92 loc) · 2.53 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
89
90
91
92
{
"name": "@ibm/mobx-react-router",
"version": "6.1.0",
"description": "Keep your MobX state in sync with react-router",
"main": "dist/mobx-react-router.js",
"module": "dist/mobx-react-router.js",
"types": "./types.d.ts",
"publishConfig": {
"access": "public"
},
"scripts": {
"lint": "eslint src __test__",
"test": "npm run lint && jest",
"test-watch": "jest --watch",
"clean": "rimraf dist",
"build:minified": "cross-env NODE_ENV=production MINIFY=true webpack --progress",
"build:unminified": "cross-env NODE_ENV=production webpack --progress",
"build": "npm run build:minified && npm run build:unminified",
"prepublish": "npm run clean && npm run lint && npm run test && npm run build",
"semantic-release": "semantic-release pre && npm publish && semantic-release post"
},
"jest": {
"collectCoverage": true,
"coverageDirectory": "./__test__/coverage",
"roots": [
"__test__"
],
"testRunner": "jest-jasmine2"
},
"files": [
"dist",
"LICENSE",
"package.json",
"README.md",
"types.d.ts"
],
"repository": {
"type": "git",
"url": "https://github.com/IBM/mobx-react-router.git"
},
"keywords": [
"react",
"react-router",
"routing",
"router",
"mobx",
"state",
"store"
],
"author": "Ali Sheehan-Dare - @im_alisd",
"license": "MIT",
"bugs": {
"url": "https://github.com/IBM/mobx-react-router/issues"
},
"homepage": "https://github.com/IBM/mobx-react-router#readme",
"devDependencies": {
"@babel/core": "^7.4.0",
"@babel/eslint-parser": "^7.23.3",
"@babel/plugin-proposal-class-properties": "^7.4.0",
"@babel/plugin-proposal-decorators": "^7.4.0",
"@babel/preset-env": "^7.4.2",
"@babel/preset-react": "^7.0.0",
"babel-jest": "^29.6.4",
"babel-loader": "^9.1.3",
"babel-polyfill": "^6.26.0",
"cross-env": "^7.0.3",
"escope": "^4.0.0",
"eslint": "^8.46.0",
"eslint-config-standard": "^17.1.0",
"eslint-config-standard-react": "^13.0.0",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-standard": "^5.0.0",
"history": "^5.3.0",
"jest": "^29.6.1",
"jest-jasmine2": "^29.6.1",
"mobx": "^6.3.2",
"react-router": "^7.0.1",
"rimraf": "^6.0.1",
"semantic-release": "^24.0.0",
"typescript": "^5.1.6",
"webpack": "^5.85.0",
"webpack-cli": "^5.1.4"
},
"peerDependencies": {
"mobx": "^6.3.2",
"react-router": "^6.14.2"
},
"dependencies": {
"@types/node": "^22.7.4"
}
}