-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
114 lines (114 loc) · 2.7 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
{
"name": "mobx-router5",
"version": "0.0.0-development",
"description": "Router5 integration with mobX",
"homepage": "https://github.com/LeonardoGentile/mobx-router5",
"repository": {
"type": "git",
"url": "https://github.com/LeonardoGentile/mobx-router5.git"
},
"author": "Leonardo Gentile",
"contributors": [],
"license": "MIT",
"keywords": [
"router",
"mobx",
"router5",
"functional",
"routing",
"observable",
"reactive",
"observer"
],
"files": [
"dist",
"src",
"README.md",
"CHANGELOG.md",
"CONTRIBUTING.md",
"LICENSE.txt"
],
"bugs": {
"url": "https://github.com/LeonardoGentile/mobx-router5/issues"
},
"main": "dist/index.js",
"module": "dist/index.es.js",
"babel": {
"comments": false,
"presets": [
"latest",
"stage-0"
],
"plugins": [
"transform-runtime",
"transform-decorators-legacy"
]
},
"dependencies": {
"babel-runtime": "^6.11.6",
"router5-transition-path": "5.3.0"
},
"devDependencies": {
"babel-cli": "^6.16.0",
"babel-core": "^6.17.0",
"babel-eslint": "^7.0.0",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-plugin-transform-runtime": "^6.15.0",
"babel-preset-latest": "^6.16.0",
"babel-preset-stage-0": "^6.16.0",
"babel-register": "^6.16.3",
"commitizen": "2.9.6",
"coveralls": "^2.11.14",
"cz-conventional-changelog": "2.1.0",
"del": "^2.2.2",
"eslint": "^3.19.0",
"eslint-plugin-import": "^2.2.0",
"jest": "23.6.0",
"mobx": "^4.2.0",
"rollup": "0.41.6",
"rollup-plugin-babel": "^2.7.1",
"router5": "^6.1.2",
"semantic-release": "^15.1.7",
"semantic-release-conventional-commits": "^2.0.0",
"travis-deploy-once": "4.4.1"
},
"peerDependencies": {
"router5": "^6.1.2",
"mobx": "^5.0.0"
},
"scripts": {
"commit": "git-cz",
"lint": "eslint src test tools",
"test": "jest",
"test:watch": "jest --watch",
"test:cover": "jest --coverage",
"coveralls": "cat ./coverage/lcov.info | coveralls",
"build": "node tools/build",
"publish:docs": "easystatic deploy docs --repo LeonardoGentile/mobx-router5",
"start": "easystatic start docs",
"semantic-release": "semantic-release",
"travis-deploy-once": "travis-deploy-once"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"release": {
"analyzeCommits": {
"path": "semantic-release-conventional-commits",
"minorTypes": [
"feat",
"minor"
],
"patchTypes": [
"fix",
"patch",
"docs",
"refactor",
"style",
"perf"
]
}
}
}