-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
60 lines (60 loc) · 2.19 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
{
"name": "mst-middlewares",
"version": "6.1.0",
"description": "The MST package ships with some prebuilt middlewares, which serves mainly as examples on how to write your own middleware. The source of each middleware can be found in this github directory, you are encouraged to read them!",
"main": "dist/mst-middlewares.js",
"umd:main": "dist/mst-middlewares.umd.js",
"module": "dist/mst-middlewares.module.js",
"browser": {
"./dist/mst-middlewares.js": "./dist/mst-middlewares.js",
"./dist/mst-middlewares.module.js": "./dist/mst-middlewares.module.js"
},
"unpkg": "dist/mst-middlewares.umd.min.js",
"jsnext:main": "dist/mst-middlewares.module.js",
"react-native": "dist/mst-middlewares.module.js",
"typings": "dist/index.d.ts",
"sideEffects": false,
"scripts": {
"clean": "rm -rf dist && rm -rf lib",
"build": "yarn clean && tsc && cpr lib dist --filter=\\.js$ && rollup -c",
"jest": "jest",
"test": "yarn test:dev && yarn test:prod",
"test:dev": "cross-env NODE_ENV=development JEST_JUNIT_OUTPUT=../../test-results/mst-middlewares/dev.xml yarn jest",
"test:prod": "cross-env NODE_ENV=production JEST_JUNIT_OUTPUT=../../test-results/mst-middlewares/prod.xml yarn jest",
"lint": "tslint -c ./tslint.json 'src/**/*.ts'"
},
"author": "MobX-State-Tree Community",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/coolsoftwaretyler/mst-middlewares"
},
"devDependencies": {
"@types/jest": "^26.0.3",
"@types/node": "^16.9.2",
"cpr": "^3.0.1",
"cross-env": "^7.0.3",
"jest": "^26.1.0",
"jest-junit": "^11.0.1",
"mobx": "^6.3.3",
"mobx-state-tree": "^5.2.0-alpha.1",
"rollup": "^2.56.3",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-filesize": "^9.1.1",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-replace": "^2.2.0",
"rollup-plugin-terser": "^7.0.2",
"ts-jest": "^26.1.1",
"tslib": "^2.3.1",
"tslint": "^6.1.3",
"tslint-config-prettier": "^1.18.0",
"typescript": "3.9.4"
},
"peerDependencies": {
"mobx-state-tree": "^5.0.0 || ^6.0.0 || ^7.0.0"
},
"files": [
"dist/"
],
"gitHead": "27ec7ac0b0743a367fb01a7f40192f3042bd91f2"
}