forked from cerebral/overmind
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.23 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.23 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
45
46
47
{
"name": "proxy-state-tree",
"version": "1.0.0-beta4",
"description": "An implementation of the Mobx/Vue state tracking approach, for library authors",
"main": "lib/index.js",
"module": "es/index.js",
"types": "lib/index.d.ts",
"scripts": {
"build": "npm run build:lib & npm run build:es",
"build:lib": "tsc --outDir lib --module commonjs",
"build:es": "tsc --outDir es --module es2015",
"clean": "rimraf es lib coverage",
"typecheck": "tsc --noEmit",
"test": "jest",
"test:watch": "jest --watch --updateSnapshot --coverage false",
"prebuild": "npm run clean",
"postbuild": "rimraf {lib,es}/**/__tests__",
"posttest": "npm run typecheck"
},
"repository": {
"type": "git",
"url": "git+https://github.com/christianalfoni/proxy-state-tree.git"
},
"keywords": [
"state",
"proxy",
"mobx",
"vue",
"store"
],
"author": "Christian Alfoni",
"license": "MIT",
"bugs": {
"url": "https://github.com/christianalfoni/proxy-state-tree/issues"
},
"homepage": "https://github.com/christianalfoni/proxy-state-tree#readme",
"devDependencies": {
"@types/jest": "^23.1.4",
"jest": "^23.5.0",
"rimraf": "^2.6.2",
"ts-jest": "^23.0.0",
"typescript": "^2.9.2"
},
"dependencies": {
"is-plain-object": "^2.0.4"
}
}