UNPKG

2.63 kBJSONView Raw
1{
2 "name": "mobx",
3 "version": "6.10.0",
4 "description": "Simple, scalable state management.",
5 "source": "src/mobx.ts",
6 "main": "dist/index.js",
7 "umd:main": "dist/mobx.umd.production.min.js",
8 "unpkg": "dist/mobx.umd.production.min.js",
9 "jsdelivr": "dist/mobx.umd.production.min.js",
10 "jsnext:main": "dist/mobx.esm.production.min.js",
11 "module": "dist/mobx.esm.js",
12 "react-native": "dist/mobx.esm.js",
13 "types": "dist/mobx.d.ts",
14 "typings": "dist/mobx.d.ts",
15 "files": [
16 "src",
17 "dist",
18 "LICENSE",
19 "CHANGELOG.md",
20 "README.md"
21 ],
22 "sideEffects": false,
23 "repository": {
24 "type": "git",
25 "url": "https://github.com/mobxjs/mobx.git"
26 },
27 "author": "Michel Weststrate",
28 "license": "MIT",
29 "funding": {
30 "type": "opencollective",
31 "url": "https://opencollective.com/mobx"
32 },
33 "bugs": {
34 "url": "https://github.com/mobxjs/mobx/issues"
35 },
36 "homepage": "https://mobx.js.org/",
37 "dependencies": {},
38 "devDependencies": {
39 "@babel/core": "^7.9.0",
40 "@babel/plugin-proposal-class-properties": "^7.8.3",
41 "@babel/plugin-proposal-decorators": "^7.8.3",
42 "@babel/plugin-transform-runtime": "^7.9.0",
43 "@babel/preset-env": "^7.9.5",
44 "@babel/preset-typescript": "^7.9.0",
45 "@babel/runtime": "^7.9.2",
46 "conditional-type-checks": "^1.0.5",
47 "flow-bin": "^0.123.0"
48 },
49 "keywords": [
50 "mobx",
51 "mobservable",
52 "observable",
53 "react-component",
54 "react",
55 "reactjs",
56 "reactive",
57 "model",
58 "frp",
59 "functional-reactive-programming",
60 "state management",
61 "data flow"
62 ],
63 "scripts": {
64 "test": "jest",
65 "lint": "eslint src/**/*",
66 "build": "node ../../scripts/build.js mobx",
67 "build:test": "yarn build --target test",
68 "perf": "scripts/perf.sh",
69 "perf-legacy": "node --expose-gc ./__tests__/perf/index.js legacy",
70 "perf-proxy": "node --expose-gc ./__tests__/perf/index.js proxy",
71 "test:performance": "yarn perf proxy && yarn perf legacy",
72 "test:mixed-versions": "yarn test --testRegex mixed-versions",
73 "test:types": "tsc --noEmit",
74 "test:flow": "flow check",
75 "test:coverage": "yarn test -i --coverage",
76 "test:size": "yarn import-size --report . observable computed autorun action",
77 "test:check": "yarn test:types",
78 "prepublishOnly": "node ./scripts/prepublish.js && yarn build --target publish"
79 }
80}