-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
87 lines (87 loc) · 2.34 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
{
"name": "mobx-safe-flow",
"version": "0.0.5",
"description": "Mobx asynchronous actions are integrated into safe-flow.",
"keywords": [
"typescript",
"safely",
"cancelable",
"interruptible",
"await-async",
"promise",
"flow",
"error-first",
"mobx",
"asynchronous",
"actions"
],
"main": "dist/cjs/mobx-safe-flow.cjs.js",
"module": "dist/esm/mobx-safe-flow.esm.js",
"types": "dist/types/index.d.ts",
"files": [
"dist"
],
"scripts": {
"test": "jest",
"ts:check": "tsc --noEmit -p tsconfig.build.json",
"build:js": "rollup -c",
"build:types": "tsc --emitDeclarationOnly -p tsconfig.build.json",
"build:clean": "del dist",
"build": "npm run ts:check && eslint --ext .ts,.js ./src && npm run build:clean && npm run build:js && npm run build:types",
"release": "np",
"version": "npm run build",
"prepare": "husky install"
},
"lint-staged": {
"*.{ts,js}": [
"prettier --write",
"eslint --fix",
"jest --bail --findRelatedTests"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/Youmenomi/mobx-safe-flow.git"
},
"author": "Dean Yao <youmenomi@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/Youmenomi/mobx-safe-flow/issues"
},
"homepage": "https://github.com/Youmenomi/mobx-safe-flow#readme",
"devDependencies": {
"@babel/plugin-proposal-class-properties": "^7.13.0",
"@babel/plugin-proposal-decorators": "^7.13.5",
"@babel/preset-env": "^7.13.12",
"@babel/preset-typescript": "^7.13.0",
"@types/jest": "^26.0.21",
"@typescript-eslint/eslint-plugin": "^4.19.0",
"@typescript-eslint/parser": "^4.19.0",
"axios": "^0.21.1",
"axios-mock-adapter": "^1.19.0",
"babel-eslint": "^10.1.0",
"babel-jest": "^26.6.3",
"cross-fetch": "^3.1.2",
"del-cli": "^3.0.1",
"eslint": "^7.22.0",
"eslint-config-prettier": "^8.1.0",
"eslint-plugin-prettier": "^3.3.1",
"fetch-mock": "^9.11.0",
"husky": "^5.2.0",
"jest": "^26.6.3",
"lint-staged": "^10.5.4",
"mobx": "^6.1.8",
"np": "^7.4.0",
"prettier": "^2.2.1",
"rollup": "^2.42.3",
"rollup-simple-configer": "^0.1.1",
"ts-jest": "^26.5.4",
"typescript": "^4.2.3"
},
"dependencies": {
"safe-flow": "0.3.5"
},
"peerDependencies": {
"mobx": "^6.1.8"
}
}