forked from mobxjs/mobx
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
139 lines (139 loc) · 3.78 KB
/
package.json
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
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
{
"name": "mobx",
"version": "0.15.4",
"description": "Simple, scalable state management.",
"main": "lib/index.js",
"umd:main": "lib/mobx.umd.js",
"module": "lib/mobx.module.js",
"unpkg": "lib/mobx.umd.min.js",
"jsnext:main": "lib/mobx.module.js",
"react-native": "lib/mobx.module.js",
"typings": "lib/mobx.d.ts",
"scripts": {
"test": "jest",
"lint": "eslint src/**/*.ts",
"watch": "jest --watch",
"perf": "yarn test:performance v4 && yarn test:performance v5",
"test:mixed-versions": "jest --testRegex mixed-versions",
"test:check": "yarn test:types && yarn lint",
"test:types": "yarn tsc --noEmit && yarn test:flow",
"test:flow": "node_modules/.bin/flow check",
"test:coverage": "yarn test -i --coverage",
"test:performance": "PERSIST=true time node --expose-gc test/perf/index.js",
"test:size": "size-limit",
"prettier": "prettier \"**/*.js\" \"**/*.ts\" \"docs/**/*.md\"",
"_prepublish": "yarn small-build",
"quick-build": "tsc --pretty",
"small-build": "node scripts/build.js",
"build": "node scripts/build.js",
"release": "node scripts/publish.js",
"publish-script": "yarn release",
"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/mobx"
},
"bugs": {
"url": "https://github.com/mobxjs/mobx/issues"
},
"files": [
"lib",
"LICENSE"
],
"homepage": "https://mobx.js.org/",
"dependencies": {},
"devDependencies": {
"@babel/core": "^7.8.4",
"@babel/plugin-proposal-class-properties": "^7.8.3",
"@babel/plugin-proposal-decorators": "^7.8.3",
"@babel/plugin-transform-runtime": "^7.8.3",
"@babel/preset-env": "^7.8.4",
"@babel/runtime": "^7.8.4",
"@rollup/plugin-node-resolve": "^7.1.1",
"@size-limit/preset-big-lib": "^4.0.2",
"@types/jest": "^24.0.11",
"@types/node": "^12",
"@typescript-eslint/eslint-plugin": "^2.20.0",
"@typescript-eslint/parser": "^2.20.0",
"babel-jest": "^24.5.0",
"conditional-type-checks": "^1.0.4",
"coveralls": "^3.0.3",
"eslint": "^6.8.0",
"flow-bin": "^0.59.0",
"fs-extra": "^8.1.0",
"husky": "^4.2.3",
"iterall": "^1.2.2",
"jest": "^24.5.0",
"prettier": "^1.19.1",
"pretty-quick": "2.0.1",
"prompts": "^2.3.0",
"rollup": "^1.31.1",
"rollup-plugin-filesize": "^6.2.1",
"rollup-plugin-replace": "^2.1.0",
"rollup-plugin-terser": "^5.2.0",
"semver": "^7.1.3",
"serializr": "^1.5.1",
"shelljs": "^0.8.3",
"size-limit": "^4.0.2",
"tape": "^4.10.1",
"ts-jest": "^24.0.0",
"tslib": "^1.9.3",
"typescript": "^3.7.5"
},
"keywords": [
"mobx",
"mobservable",
"observable",
"react-component",
"react",
"reactjs",
"reactive",
"model",
"frp",
"functional-reactive-programming",
"state management",
"data flow"
],
"jest": {
"globals": {
"ts-jest": {
"tsConfig": "tsconfig.test.json"
}
},
"transform": {
"^.+\\.tsx?$": "ts-jest",
"^.+\\.jsx?$": "babel-jest"
},
"testRegex": "test/v[4|5]/base/.*\\.(t|j)sx?$",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json"
],
"testPathIgnorePatterns": [
"/node_modules/",
"/\\./"
],
"watchPathIgnorePatterns": [
"<rootDir>/node_modules/"
]
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
}
}