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
50 lines (50 loc) · 1.45 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.45 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
48
49
50
{
"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) && npm run build:dist",
"build:lib": "tsc --outDir lib --module commonjs",
"build:es": "tsc --outDir es --module es2015",
"build:dist": "webpack --config webpack.config.js",
"clean": "rimraf es lib coverage",
"typecheck": "tsc --noEmit",
"test": "jest --runInBand && npm run test:size",
"test:watch": "jest --watch --updateSnapshot --coverage false",
"test:size": "bundlesize",
"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": {
"bundlesize": "^0.17.2",
"terser-webpack-plugin": "^1.3.0",
"webpack": "^4.35.0"
},
"bundlesize": [
{
"path": "./dist/proxy-state-tree.min.js",
"maxSize": "4 kB"
}
]
}