-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
50 lines (50 loc) · 1.13 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
{
"name": "mosx",
"version": "0.8.11",
"description": "Multiview observable state management engine",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"patch": "tsc && npm version patch",
"major": "tsc && npm version major",
"minor": "tsc && npm version minor",
"build": "tsc",
"test": "jest --verbose",
"docs:dev": "vuepress dev .docs",
"docs:build": "vuepress build .docs"
},
"keywords": [
"mobx",
"state management",
"magx",
"serializer"
],
"author": "Damir Yusipov",
"license": "MIT",
"dependencies": {
"debug": "^4.3.2",
"mobx": "^5.15.7",
"patchpack": "^0.4.2"
},
"devDependencies": {
"@types/debug": "^4.1.7",
"@types/jest": "^27.0.2",
"jest": "^27.2.3",
"ts-jest": "^27.0.5",
"ts-node": "^10.2.1",
"tslint": "^6.1.3",
"typescript": "^4.4.3",
"vuepress-theme-default-prefers-color-scheme": "^2.0.0"
},
"jest": {
"transform": {
".(ts|tsx)": "ts-jest"
},
"testRegex": "(/__tests__/.*|\\.(test|spec))\\.(ts|tsx)$",
"moduleFileExtensions": [
"js",
"ts",
"tsx"
]
}
}