-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 1.81 KB
/
package.json
File metadata and controls
69 lines (69 loc) · 1.81 KB
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
{
"name": "exmg-react-router",
"version": "1.0.4",
"description": "Context based router for react",
"main": "dist/exmg-react-router.common.js",
"module": "dist/exmg-react-router.esm.js",
"scripts": {
"start": "rollup -c -w",
"build": "rollup -c",
"test": "jest",
"coverage": "jest --coverage",
"prepublish": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/exmg/exmg-react-router.git"
},
"keywords": [
"Hash",
"based",
"router",
"for",
"react"
],
"author": "Ex Machina",
"license": "MIT",
"bugs": {
"url": "https://github.com/exmg/exmg-react-router/issues"
},
"homepage": "https://github.com/exmg/exmg-react-router#readme",
"devDependencies": {
"babel-core": "^6.26.0",
"babel-eslint": "^8.2.2",
"babel-plugin-external-helpers": "^6.22.0",
"babel-plugin-module-resolver": "^3.1.0",
"babel-preset-env": "^1.6.1",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-2": "^6.24.1",
"enzyme": "^3.3.0",
"enzyme-adapter-react-16": "^1.1.1",
"eslint": "^4.18.2",
"eslint-config-airbnb": "^16.1.0",
"eslint-import-resolver-babel-module": "^4.0.0",
"eslint-plugin-import": "^2.9.0",
"eslint-plugin-jsx-a11y": "^6.0.3",
"eslint-plugin-react": "^7.7.0",
"jest": "^22.4.2",
"prop-types": "^15.6.1",
"react": "^16.2.0",
"react-dom": "^16.2.0",
"react-test-renderer": "^16.2.0",
"rollup": "^0.56.5",
"rollup-plugin-babel": "^3.0.2",
"rollup-plugin-commonjs": "^9.1.0",
"rollup-plugin-node-resolve": "^3.2.0"
},
"dependencies": {
"history": "^4.7.2",
"path-to-regexp": "^2.2.0"
},
"jest": {
"collectCoverage": true,
"mapCoverage": true,
"collectCoverageFrom": [
"src/**/*.{js,jsx}",
"!**/node_modules/**"
]
}
}