-
-
Notifications
You must be signed in to change notification settings - Fork 17
/
package.json
52 lines (52 loc) · 1.27 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
{
"name": "mst-persist",
"version": "0.1.4",
"description": "Persist and hydrate MobX-state-tree stores",
"main": "dist/index.js",
"module": "dist/mst-persist.esm.js",
"typings": "dist/index.d.ts",
"files": [
"dist/"
],
"author": "Anton Gilgur",
"license": "Apache-2.0",
"homepage": "https://github.com/agilgur5/mst-persist",
"repository": {
"type": "git",
"url": "https://github.com/agilgur5/mst-persist.git"
},
"bugs": {
"url": "https://github.com/agilgur5/mst-persist/issues"
},
"keywords": [
"mobx",
"mobx-state-tree",
"mst",
"persist",
"hydrate",
"storage"
],
"scripts": {
"start": "tsdx watch",
"build": "tsdx build",
"tsc": "tsc --noEmit --skipLibCheck",
"test": "tsdx test",
"test:watch": "tsdx test --watch",
"test:coverage": "tsdx test --coverage",
"test:pub": "npm run build && npm pack",
"pub": "npm run build && npm publish",
"changelog": "changelog-maker"
},
"peerDependencies": {
"mobx-state-tree": ">=3.2.1"
},
"dependencies": {},
"devDependencies": {
"@agilgur5/changelog-maker": "^3.0.0",
"jest-without-globals": "^0.0.2",
"mobx": "^6.3.0",
"mobx-state-tree": "^5.1.8",
"tsdx": "github:agilgur5/tsdx#dist",
"typescript": "^3.5.2"
}
}