-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
52 lines (52 loc) · 1.51 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
{
"name": "react-router-enzyme-context",
"version": "1.2.0",
"description": "A helper for mocking react router v4 context and childContextTypes when testing components with Enzyme mount() and shallow().",
"main": "dist/react-router-enzyme-context.cjs.js",
"module": "dist/react-router-enzyme-context.esm.js",
"scripts": {
"prepublishOnly": "npm run build",
"build": "rollup -c",
"dev": "rollup -c -w",
"lint": "eslint . --ext .js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/express-labs/react-router-enzyme-context.git"
},
"keywords": [
"react",
"router",
"mocking",
"mount",
"shallow",
"enzyme",
"context",
"childContextTypes"
],
"author": "Matthew Toledo",
"license": "MIT",
"bugs": {
"url": "https://github.com/express-labs/react-router-enzyme-context/issues"
},
"homepage": "https://github.com/express-labs/react-router-enzyme-context#readme",
"dependencies": {
"history": "^4.7.2",
"prop-types": "^15.6.0"
},
"devDependencies": {
"babel-core": "^6.26.0",
"babel-eslint": "^8.2.1",
"babel-preset-env": "^1.6.1",
"eslint": "^4.16.0",
"eslint-config-airbnb": "^16.1.0",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-jsx-a11y": "^6.0.3",
"eslint-plugin-react": "^7.5.1",
"rollup": "^0.55.0",
"rollup-plugin-babel": "^3.0.3",
"rollup-plugin-commonjs": "^8.2.6",
"rollup-plugin-node-resolve": "^3.0.2"
}
}