This repository was archived by the owner on Sep 29, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 1.85 KB
/
Copy pathpackage.json
File metadata and controls
66 lines (66 loc) · 1.85 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
{
"name": "react-url-router",
"version": "0.2.2",
"description": "An alternative to react-router that uses a url config",
"repository": {
"type": "git",
"url": "git://github.com/mixcloud/react-url-router.git"
},
"main": "lib/index.js",
"scripts": {
"lint": "BABEL_ENV=test eslint --config=.eslintrc.js . --max-warnings=0",
"lint-fix": "BABEL_ENV=test eslint --config=.eslintrc.js . --fix",
"test": "BABEL_ENV=test jest --config=jest.config.json --coverage",
"test-watch": "BABEL_ENV=test jest --config=jest.config.json --watch --onlyChanged",
"flow": "flow .",
"compile": "babel --ignore __tests__,__mocks__ --out-dir lib/ src/",
"watch": "babel --watch --ignore __tests__,__mocks__ --out-dir lib/ src/",
"prepublish": "npm run compile"
},
"files": [
"LICENSE",
"README.md",
"lib/",
"src/"
],
"keywords": [
"react",
"react-router",
"router"
],
"author": {
"name": "Sam Cooke",
"email": "sam@mixcloud.com"
},
"license": "MIT",
"dependencies": {
"deep-equal": "^1.0.1",
"history": "4.6.1",
"hoist-non-react-statics": "^1.2.0",
"path-to-regexp": "^1.7.0"
},
"devDependencies": {
"babel": "^6.23.0",
"babel-cli": "^6.24.1",
"babel-eslint": "^7.2.3",
"babel-jest": "^20.0.3",
"babel-plugin-react-require": "^3.0.0",
"babel-plugin-transform-flow-strip-types": "^6.22.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"enzyme": "^2.9.1",
"eslint": "^3.19.0",
"eslint-plugin-flowtype": "^2.33.0",
"eslint-plugin-header": "^1.0.0",
"eslint-plugin-react": "^7.0.1",
"flow-bin": "^0.43.0",
"jest": "^20.0.4",
"jest-jasmine2": "^20.0.4",
"react-test-renderer": "^15.6.1"
},
"peerDependencies": {
"react": "15.6.1",
"react-dom": "15.6.1"
}
}