-
Notifications
You must be signed in to change notification settings - Fork 49
/
Copy pathpackage.json
88 lines (88 loc) · 2.46 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": "@ibm/mobx-react-router",
"version": "5.0.3",
"description": "Keep your MobX state in sync with react-router",
"main": "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 $(yarn bin webpack) --progress",
"build:unminified": "cross-env NODE_ENV=production $(yarn bin 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/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",
"@types/react-router": "^4.0.2",
"babel-eslint": "^7.2.3",
"babel-jest": "^29.6.4",
"babel-loader": "^9.1.3",
"babel-polyfill": "^6.26.0",
"cross-env": "^3.0.0",
"escope":"^4.0.0",
"eslint": "^8.46.0",
"eslint-config-standard": "^7.1.0",
"eslint-config-standard-react": "^5.0.0",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-standard": "^5.0.0",
"jest": "^29.6.1",
"jest-jasmine2": "^29.6.1",
"mobx": "^6.3.2",
"react-router": "^5.2.0",
"rimraf": "^5.0.1",
"semantic-release": "^21.0.2",
"typescript": "^5.1.6",
"webpack": "^5.85.0",
"webpack-cli": "^5.1.4"
},
"peerDependencies": {
"mobx": "^6.0.0",
"react-router": "^5.2.0"
}
}