This repository has been archived by the owner on Nov 25, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
58 lines (58 loc) · 1.72 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
{
"name": "react-easy-router",
"description": "Easy and lightweight react router",
"author": "Maxim Falaleev <max@studio107.ru> (https://studio107.ru)",
"version": "3.1.0",
"main": "lib/index.js",
"license": "MIT",
"scripts": {
"build": "NODE_ENV=production babel -d lib/ src/",
"prepublish": "npm run build",
"test:mocha": "mocha src/**/*.test.js --compilers js:babel-core/register",
"test": "NODE_ENV=nyc nyc --require babel-core/register mocha src/**/*.test.js"
},
"repository": {
"type": "git",
"url": "https://github.com/Studio107/react-easy-router.git"
},
"keywords": [
"react",
"router",
"lightweight",
"small"
],
"bugs": "https://github.com/Studio107/react-easy-router/issues",
"dependencies": {
"history": "^4.7.2",
"query-string": "^5.0.0",
"react": "15.x || 16.x",
"react-dom": "15.x || 16.x",
"shallowequal": "1.x",
"url-pattern": "1.x",
"urljoin": "0.x"
},
"devDependencies": {
"enzyme-adapter-react-16": "^1.0.0",
"babel": "^6.5.2",
"babel-cli": "^6.3.17",
"babel-core": "^6.3.17",
"babel-plugin-istanbul": "^4.1.3",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-plugin-transform-object-rest-spread": "^6.23.0",
"babel-plugin-transform-react-jsx": "^6.3.13",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-0": "^6.5.0",
"chai": "^3.5.0",
"enzyme": "^3.0.0",
"istanbul": "^0.4.5",
"mocha": "^3.4.1",
"nyc": "^10.3.2",
"prop-types": "^15.5.10",
"react-helmet": "^5.1.3",
"react-test-renderer": "^16.0.0",
"sinon": "^2.3.0",
"webpack": "^2.5.1"
}
}