-
Notifications
You must be signed in to change notification settings - Fork 40
/
package.json
79 lines (79 loc) · 1.98 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
{
"name": "mobx-remotedev",
"version": "0.3.6",
"description": "Remote debugging for mobx.",
"main": "lib/index.js",
"module": "src/index.js",
"files": [
"index.d.ts",
"src",
"lib",
"dist"
],
"scripts": {
"clean": "rimraf lib dist",
"build:lib": "babel src --out-dir lib",
"build:umd": "webpack --config webpack.config.development.js",
"build:umd:min": "webpack --config webpack.config.production.js",
"build": "npm run build:lib && npm run build:umd && npm run build:umd:min",
"lint": "eslint src test",
"prepublish": "npm run lint && npm run clean && npm run build"
},
"repository": {
"type": "git",
"url": "https://github.com/zalmoxisus/mobx-remotedev.git"
},
"keywords": [
"mobx",
"devtools",
"flux",
"react",
"hot reloading",
"time travel",
"live edit"
],
"author": "Mihail Diordiev <[email protected]> (https://github.com/zalmoxisus)",
"license": "MIT",
"bugs": {
"url": "https://github.com/zalmoxisus/mobx-remotedev/issues"
},
"homepage": "https://github.com/zalmoxisus/mobx-remotedev",
"devDependencies": {
"@babel/cli": "^7.2.3",
"@babel/core": "^7.2.2",
"@babel/preset-env": "^7.3.1",
"babel-eslint": "^10.0.1",
"babel-loader": "^8.0.5",
"eslint": "^2.13.1",
"eslint-config-airbnb": "^9.0.1",
"eslint-config-prettier": "^4.0.0",
"eslint-plugin-import": "^1.9.2",
"eslint-plugin-jsx-a11y": "^1.5.3",
"eslint-plugin-react": "^5.2.2",
"expect": "^1.20.1",
"mobx": "^4.1.1",
"mocha": "^2.5.3",
"rimraf": "^2.5.2",
"terser-webpack-plugin": "^1.2.1",
"webpack": "^4.29.0",
"webpack-cli": "^3.2.1",
"webpack-merge": "^4.2.1"
},
"peerDependencies": {
"mobx": ">=4.0.0"
},
"npmName": "mobx-remotedev",
"npmFileMap": [
{
"basePath": "/dist/",
"files": [
"*.js"
]
}
],
"dependencies": {
"jsan": "^3.1.9",
"remotedev": "^0.2.7",
"remotedev-utils": "^0.1.4"
}
}