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
40 lines (40 loc) · 1.1 KB
/
package.json
File metadata and controls
40 lines (40 loc) · 1.1 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
{
"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 --runInBand",
"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",
"dependencies": {
"is-plain-obj": "^1.1.0"
}
}