forked from mobxjs/mobx
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
115 lines (115 loc) · 3.33 KB
/
package.json
File metadata and controls
115 lines (115 loc) · 3.33 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
{
"name": "mobx",
"version": "5.15.1",
"description": "Simple, scalable state management.",
"main": "mobx.cjs.js",
"umd:main": "mobx.umd.js",
"module": "mobx.esm.js",
"browser": {
"./mobx.cjs.js": "./mobx.cjs.js",
"./mobx.esm.js": "./mobx.esm.js"
},
"unpkg": "mobx.umd.min.js",
"jsnext:main": "mobx.esm.js",
"react-native": "mobx.esm.js",
"typings": "src/mobx.d.ts",
"scripts": {
"test": "jest",
"watch": "jest --watch",
"test:mixed-versions": "jest --testRegex mixed-versions",
"test:all": "yarn tsc --noEmit && yarn lint && yarn test --runInBand",
"test:webpack": "node scripts/webpack-regression-tests.js",
"test:flow": "flow check",
"test:performance": "cross-env PERSIST=true node --expose-gc test/perf/index.js",
"test:ci": "yarn test:all && yarn test:performance && yarn test --runInBand --coverage && yarn test:webpack && yarn size",
"prettier": "prettier \"**/*.js\" \"**/*.jsx\" \"**/*.tsx\" \"**/*.ts\" \"docs/**/*.md\"",
"quick-build": "tsc --pretty",
"lint": "eslint src/**/*.ts",
"size": "size-limit",
"publish-script": "node scripts/publish.js",
"docs:build": "yarn --cwd website build",
"docs:start": "yarn --cwd website start",
"docs:publish": "yarn --cwd website publish-gh-pages",
"prepare": "yarn --cwd website install",
"dedup": "npx yarn-deduplicate -s fewer yarn.lock"
},
"repository": {
"type": "git",
"url": "https://github.com/mobxjs/mobx.git"
},
"author": "Michel Weststrate",
"license": "MIT",
"funding": {
"type": "opencollective",
"url": "https://opencollective.com/immer"
},
"bugs": {
"url": "https://github.com/mobxjs/mobx/issues"
},
"homepage": "https://mobx.js.org/",
"devDependencies": {
"@babel/core": "^7.3.4",
"@babel/plugin-proposal-class-properties": "^7.3.4",
"@babel/plugin-proposal-decorators": "^7.3.0",
"@babel/plugin-transform-runtime": "^7.3.4",
"@babel/preset-env": "^7.3.4",
"@babel/runtime": "^7.3.4",
"@bazel/hide-bazel-files": "^1.0.0",
"@bazel/rollup": "^1.0.0",
"@bazel/terser": "^1.0.0",
"@bazel/typescript": "^1.0.0",
"@rollup/plugin-node-resolve": "^6.0.0",
"@rollup/plugin-replace": "^2.2.1",
"@types/jest": "^24.0.24",
"@types/node": "^11.11.3",
"@typescript-eslint/eslint-plugin": "^2.10.0",
"@typescript-eslint/parser": "^2.10.0",
"babel-jest": "^24.5.0",
"chalk": "^1.1.3",
"conditional-type-checks": "^1.0.4",
"coveralls": "^3.0.3",
"cross-env": "^6.0.3",
"eslint": "^6.7.2",
"flow-bin": "^0.114.0",
"fs-extra": "^8.1.0",
"husky": "^1.3.1",
"iterall": "^1.2.2",
"jest": "^24.9.0",
"lint-staged": "^8.1.5",
"prettier": "^1.16.4",
"rollup": "^1.27.13",
"serializr": "^1.5.1",
"shelljs": "^0.8.3",
"size-limit": "^1.3.3",
"tape": "^4.10.1",
"terser": "^4.4.3",
"tslib": "^1.9.3",
"typescript": "^3.3.3333"
},
"dependencies": {},
"keywords": [
"mobx",
"mobservable",
"observable",
"react-component",
"react",
"reactjs",
"reactive",
"model",
"frp",
"functional-reactive-programming",
"state management",
"data flow"
],
"lint-staged": {
"*.{ts,tsx,js,jsx,md}": [
"prettier --write",
"git add"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
}
}