forked from LeonardoGentile/mobx-router5
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
111 lines (111 loc) · 3.05 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
{
"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": "src/index.js",
"jspm": {
"main": "src/index.js",
"registry": "npm",
"format": "esm"
},
"module": "src/index.js",
"babel": {
"comments": false,
"presets": [
"env",
"stage-0"
],
"plugins": [
"transform-runtime",
"transform-decorators-legacy"
]
},
"dependencies": {
"babel-runtime": "^6.11.6",
"router5.transition-path": "^4.0.1"
},
"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",
"chai": "^3.5.0",
"commitizen": "2.9.6",
"coveralls": "^2.11.14",
"cz-conventional-changelog": "2.0.0",
"del": "^2.2.2",
"eslint": "^3.19.0",
"eslint-plugin-import": "^2.2.0",
"istanbul": "^1.1.0-alpha.1",
"mobx": "^3.1.9",
"mocha": "^3.1.2",
"rollup": "0.41.6",
"rollup-plugin-babel": "^2.7.1",
"router5": "~4.5.2",
"semantic-release": "^6.3.2",
"semantic-release-conventional-commits": "1.0.2",
"sinon": "^2.0.0-pre.3",
"sinon-chai": "^2.9.0"
},
"peerDependencies": {
"router5": "^4.0.0",
"mobx": "^3.1.0"
},
"scripts": {
"commit": "git-cz",
"lint": "eslint src test tools",
"test": "mocha --compilers js:babel-register --require ./test/utils/test-setup.js 'test/*.js'",
"test:watch": "mocha --compilers js:babel-register --require ./test/utils/test-setup.js --reporter min --watch 'test/*.js'",
"test:cover": "babel-node ./node_modules/istanbul/lib/cli.js cover ./node_modules/mocha/bin/_mocha --require ./test/utils/test-setup.js 'test/*.js'",
"coveralls": "cat ./coverage/lcov.info | coveralls",
"build": "node tools/build",
"publish:docs": "easystatic deploy docs --repo kriasoft/babel-starter-kit",
"start": "easystatic start docs",
"semantic-release": "semantic-release pre && npm publish && semantic-release post"
},
"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"]
}
}
}