-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.07 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.07 KB
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
{
"name": "classy-mst",
"version": "3.14.0",
"description": "ES6-like syntax for mobx-state-tree",
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"browser": "dist/umd/index.js",
"typings": "dist/esm/index.d.ts",
"scripts": {
"tsc": "tsc",
"rollup": "rollup",
"prepublish": "tsc -p src && (node src/checkver.js lt 5.0.0 || (tsc -p src -m es6 --outdir dist/esm && rollup -c))",
"test": "tsc -p test && node test/test.js"
},
"author": "Juha Järvi",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/charto/classy-mst.git"
},
"bugs": {
"url": "https://github.com/charto/classy-mst/issues"
},
"homepage": "https://github.com/charto/classy-mst#readme",
"keywords": [
"mobx",
"mst",
"react",
"reactive",
"redux",
"state"
],
"peerDependencies": {
"mobx-state-tree": "^3.7.0"
},
"devDependencies": {
"@types/node": "^12.0.0",
"autoroll": "~0.2.0",
"mobx": "^4.9.4",
"mobx-state-tree": "^3.14.0",
"rollup": "^1.11.3",
"typescript": "^3.4.5"
}
}