This repository has been archived by the owner on Jun 7, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
57 lines (57 loc) · 1.54 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
{
"name": "deku-router5",
"version": "4.0.0",
"description": "router5 helpers for Deku",
"main": "dist/commonjs/index.js",
"scripts": {
"clean": "rimraf dist",
"build:cjs": "babel modules --out-dir dist/commonjs",
"build:umd": "rollup -c rollup.config.js",
"build": "npm run clean && npm run build:cjs && npm run build:umd",
"test": "echo 'no tests specified yet'",
"lint": "eslint modules",
"release": "./scripts/release.js",
"clog": "conventional-changelog -p angular -i CHANGELOG.md -w"
},
"repository": {
"type": "git",
"url": "https://github.com/router5/deku-router5.git"
},
"keywords": [
"router",
"html5",
"history",
"tree",
"react",
"functional"
],
"author": "Thomas Roch",
"license": "MIT",
"bugs": {
"url": "https://github.com/router5/deku-router5/issues"
},
"homepage": "http://router5.github.com/router5/deku-router5",
"devDependencies": {
"babel-core": "6.9.1",
"babel-eslint": "6.0.4",
"babel-plugin-transform-export-extensions": "6.8.0",
"babel-plugin-transform-object-rest-spread": "6.8.0",
"babel-preset-es2015": "6.9.0",
"babel-preset-es2015-rollup": "1.1.1",
"conventional-changelog": "1.1.0",
"eslint": "^2.11.1",
"rimraf": "^2.5.2",
"rollup": "^0.26.3",
"rollup-plugin-babel": "^2.4.0",
"rollup-plugin-npm": "^1.4.0",
"should": "^9.0.0",
"yargs": "^4.7.1"
},
"peerDependencies": {
"router5": "^4.0.0",
"deku": "~0.5.0 || ^1.0.0"
},
"dependencies": {
"is-equal-shallow": "^0.1.3"
}
}