-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
60 lines (60 loc) · 1.6 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
{
"name": "@eagle/tango-router",
"version": "1.4.0",
"description": "Dead simple router for @eagle/tango",
"repository": {
"type": "git",
"url": "https://github.com/Graf009/tango-router.git"
},
"author": "Oleg Orlov <[email protected]>",
"license": "MIT",
"main": "dist/index.js",
"module": "es/index.js",
"files": [
"dist",
"es"
],
"scripts": {
"preversion": "npm run clean && npm run check && npm run build",
"clean": "rimraf dist es",
"lint": "eslint src",
"test": "cross-env BABEL_ENV=commonjs ava",
"check": "npm run lint && npm run test",
"build:commonjs": "cross-env BABEL_ENV=commonjs babel src --out-dir dist",
"build:es": "cross-env BABEL_ENV=es babel src --out-dir es",
"build": "npm run build:commonjs && npm run build:es"
},
"peerDependencies": {
"@eagle/tango": "*",
"react": "^15.0.0"
},
"dependencies": {
"immutable": "3.8.1",
"invariant": "2.2.1",
"react-router": "2.8.1",
"react-router-redux": "3.0.0",
"react-router-scroll": "0.3.3"
},
"devDependencies": {
"@eagle/babel-preset-eagle": "1.0.4",
"@eagle/eslint-config-eagle": "1.4.2",
"@eagle/tango": "1.3.1",
"ava": "0.16.0",
"babel-cli": "6.18.0",
"babel-core": "6.18.2",
"babel-plugin-add-module-exports": "0.2.1",
"babel-register": "6.18.0",
"cross-env": "3.1.3",
"eslint": "3.9.1",
"eslint-plugin-import": "1.16.0",
"eslint-plugin-jsx-a11y": "2.2.3",
"eslint-plugin-react": "6.5.0",
"react": "15.3.2",
"rimraf": "2.5.4"
},
"ava": {
"require": [
"babel-register"
]
}
}