-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
48 lines (48 loc) · 1.06 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
{
"name": "ts-transform-async-to-mobx-flow",
"description": "Typescript transformer for converting async functions into generators wrapped with mobx.flow",
"repository": "[email protected]:aurornz/ts-transform-async-to-mobx-flow.git",
"author": "Auror <[email protected]>",
"private": true,
"license": "MIT",
"keywords": [
"mobx",
"typescript",
"typescript-transformer"
],
"prettier": {
"printWidth": 100,
"singleQuote": true,
"trailingComma": "all"
},
"devDependencies": {
"@types/jest": "^29.5.12",
"@types/node": "^16",
"jest": "^29.7.0",
"mobx": "^6.0.0",
"prettier": "^3.2.5",
"ts-jest": "^29.1.2",
"typescript": "^5.4.5",
"typescript4": "npm:[email protected]"
},
"scripts": {
"test": "pnpm -r test"
},
"workspaces": [
"packages/*"
],
"jest": {
"transform": {
"^.+\\.tsx?$": "ts-jest"
},
"testRegex": "(/test/.|\\.(test|spec))\\.(jsx?|tsx?)$",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json",
"node"
]
}
}