-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
64 lines (64 loc) · 1.58 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
{
"name": "mobx-dispatcher-router",
"version": "0.0.2",
"description": "The Store & Route in one solution designed to be used with mobX and react",
"main": "./dist/index.js",
"repository": "https://github.com/gen-failure/mobx-dispatcher.git",
"files": [
"dist",
"README.md"
],
"scripts": {
"prepare": "npm run build",
"build": "babel es6 --out-dir dist",
"prepublishOnly": "npm run build",
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "Michal Koudelka <koudelka.michal@gmail.com>",
"license": "ISC",
"dependencies": {
"parse-route": "0.0.1",
"route-parser": "0.0.5",
"url-search-params-polyfill": "^5.0.0"
},
"devDependencies": {
"@babel/cli": "^7.1.2",
"@babel/core": "^7.1.2",
"@babel/plugin-proposal-class-properties": "^7.1.0",
"@babel/plugin-proposal-decorators": "^7.1.2",
"@babel/plugin-syntax-dynamic-import": "^7.0.0",
"@babel/plugin-transform-classes": "^7.1.0",
"babel-plugin-transform-decorators-legacy": "^1.3.5",
"babel-preset-env": "^1.7.0",
"mobx": "^5.5.0"
},
"module": "./src/index.js",
"babel": {
"presets": [
[
"env",
{
"targets": {
"node": "current"
}
}
]
],
"plugins": [
[
"@babel/plugin-proposal-decorators",
{
"legacy": true
}
],
[
"@babel/plugin-proposal-class-properties",
{
"loose": true
}
],
"@babel/plugin-syntax-dynamic-import",
"@babel/plugin-transform-classes"
]
}
}