This repository was archived by the owner on Jun 7, 2018. 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) · 2.11 KB
/
package.json
File metadata and controls
66 lines (66 loc) · 2.11 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": "router5-listeners",
"version": "3.0.0",
"description": "Listeners plugin for router5",
"main": "dist/commonjs/index.js",
"jsnext:main": "dist/es/index.js",
"scripts": {
"clean": "rimraf dist",
"build": "npm run clean && mkdirp dist/commonjs && npm run build:cjs && npm run build:es && npm run build:iife && npm run build:amd && npm run build:umd",
"build:iife": "rollup -c -f iife && rollup -c -f iife --uglify",
"build:amd": "rollup -c -f amd && rollup -c -f amd --uglify",
"build:umd": "rollup -c -f umd && rollup -c -f umd --uglify",
"build:cjs": "babel modules --out-dir dist/commonjs",
"build:es": "BABEL_ENV=es babel modules --out-dir dist/es",
"test": "mocha --compilers js:babel-core/register --recursive 'test/main.js'",
"clog": "conventional-changelog -p angular -i CHANGELOG.md -w",
"lint": "eslint modules",
"release": "./scripts/release.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/router5/router5-listeners.git"
},
"keywords": [
"router5",
"plugin",
"listeners",
"router"
],
"author": "Thomas Roch",
"license": "MIT",
"bugs": {
"url": "https://github.com/router5/router5-listeners/issues"
},
"homepage": "http://router5.github.io",
"devDependencies": {
"babel-core": "^6.9.1",
"babel-eslint": "^6.0.4",
"babel-plugin-add-module-exports": "^0.2.1",
"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",
"chai": "^3.5.0",
"conventional-changelog": "^1.1.0",
"coveralls": "^2.11.9",
"eslint": "^2.11.1",
"mkdirp": "^0.5.1",
"mocha": "^2.5.3",
"rimraf": "^2.5.2",
"rollup": "^0.26.3",
"rollup-plugin-babel": "^2.4.0",
"rollup-plugin-npm": "^1.4.0",
"rollup-plugin-uglify": "^0.3.1",
"router5": "^3.0.3",
"sinon": "^1.17.4",
"sinon-chai": "^2.8.0",
"yargs": "^4.7.1"
},
"dependencies": {
"router5.transition-path": "~3.0.0"
},
"peerDependencies": {
"router5": "^3.0.0"
}
}