-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
78 lines (78 loc) · 2.26 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
{
"name": "@aleph/react-router-hijack-a",
"version": "1.0.0",
"description": "Watches HTML <a>-tag clicks and passes them to React Router if needed",
"repository": {
"type": "git",
"url": "https://github.com/AlephSF/react-router-hijack-a.git"
},
"author": "Aleph Incorporated",
"license": "MIT",
"bugs": {
"url": "https://github.com/AlephSF/react-router-hijack-a/issues"
},
"homepage": "https://github.com/AlephSF/react-router-hijack-a",
"keywords": [
"react-component",
"react-router",
"react"
],
"files": [
"/index.js",
"/dist"
],
"jest": {
"setupTestFrameworkScriptFile": "<rootDir>/setupTest.js",
"testURL": "https://www.test.com"
},
"publishConfig": {
"access": "public"
},
"scripts": {
"build": "rimraf ./dist && BABEL_ENV=production babel src --out-dir ./dist",
"dev": "babel src --out-dir ./dist --watch",
"lint": "eslint ./src ./index.js",
"release": "semantic-release",
"test": "jest"
},
"devDependencies": {
"@aleph/eslint-config": "1.1.0",
"babel-cli": "^6.6.4",
"babel-core": "^6.7.4",
"babel-eslint": "^8.2.3",
"babel-jest": "^23.0.1",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-es2015-modules-commonjs": "^6.26.2",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-env": "^1.7.0",
"babel-preset-minify": "^0.5.0-alpha.a24dd066",
"babel-preset-react": "^6.5.0",
"enzyme": "^3.3.0",
"enzyme-adapter-react-16": "^1.1.1",
"eslint": "^4.19.1",
"eslint-config-standard": "^11.0.0",
"eslint-config-standard-react": "^6.0.0",
"eslint-plugin-babel": "^5.1.0",
"eslint-plugin-import": "^2.12.0",
"eslint-plugin-jest": "^21.17.0",
"eslint-plugin-node": "^6.0.1",
"eslint-plugin-promise": "^3.8.0",
"eslint-plugin-react": "^7.9.1",
"eslint-plugin-standard": "^3.1.0",
"jest": "^23.1.0",
"react": "^16.0.0",
"react-dom": "^16.0.0",
"react-router-dom": "^4.0.0",
"rimraf": "^2.6.2",
"semantic-release": "^15.5.2"
},
"peerDependencies": {
"react": "^16.0.0",
"react-dom": "^16.0.0",
"react-router-dom": "^4.0.0"
},
"dependencies": {
"babel-runtime": "^6.6.1"
}
}