-
-
Notifications
You must be signed in to change notification settings - Fork 14
/
package.json
80 lines (80 loc) · 2.04 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
{
"name": "mobx-preact",
"version": "3.0.0",
"description": "Mobx bindings specifically for Preact",
"main": "lib/index.js",
"module": "lib/index.module.js",
"repository": {
"type": "git",
"url": "git+https://github.com/philmander/mobx-preact.git"
},
"scripts": {
"lint": "eslint src test --fix",
"prepublish": "npm run lint && npm test && npm run build",
"build": "node build-rollup",
"test": "jest",
"build:sample": "mkdirp sample/dist && babel sample/sample.js -o sample/dist/sample.es5.js && rollup -c sample/rollup.config.js",
"release": "standard-version"
},
"keywords": [
"preact",
"mobx-preact",
"mobx",
"observer",
"bindings"
],
"author": "Phil Mander",
"license": "MIT",
"peerDependencies": {
"mobx": "5.x",
"preact": ">=8"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.25.0",
"babel-eslint": "^8.2.2",
"babel-jest": "^23.0.1",
"babel-plugin-module-resolver": "^3.1.0",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-plugin-transform-react-jsx": "^6.24.1",
"babel-preset-env": "^1.5.2",
"babel-preset-es2015-rollup": "^3.0.0",
"babel-preset-stage-1": "^6.24.1",
"eslint": "^4.5.0",
"eslint-plugin-jest": "^21.3.2",
"eslint-plugin-react": "^7.5.1",
"jest": "^23.1.0",
"mobx": "^5.0.0",
"preact": "^8.2.6",
"preact-compat": "^3.17.0",
"preact-render-to-string": "^3.7.0",
"rollup": "^0.60.1",
"rollup-plugin-babel": "^3.0.3",
"rollup-plugin-commonjs": "^9.0.0",
"rollup-plugin-filesize": "^2.0.0",
"rollup-plugin-node-resolve": "^3.0.0",
"rollup-plugin-replace": "^2.0.0",
"rollup-plugin-uglify": "^4.0.0",
"standard-version": "^4.4.0"
},
"dependencies": {
"hoist-non-react-statics": "^2.3.1"
},
"babel": {
"presets": [
[
"env"
],
"stage-1"
],
"plugins": [
[
"transform-react-jsx",
{
"pragma": "h"
}
],
"transform-decorators-legacy"
]
}
}