-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.34 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
{
"name": "esnext-router",
"version": "1.0.6",
"description": "Tiny es2015 JavaScript Router with named parameters, HTML5 pushState and express-like middleware support",
"main": "dist/esnext-router.iife.js",
"module": "dist/esnext-router.es.js",
"scripts": {
"karma": "karma start karma.conf.js",
"test": "karma start karma.conf.js --single-run",
"build": "rollup -cw"
},
"repository": {
"type": "git",
"url": "git+https://github.com/robhicks/esnext-router.git"
},
"keywords": [
"JavaScript",
"browser",
"router",
"pushState",
"popstate",
"HTML5",
"middleware",
"express"
],
"author": "Rob Hicks <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/robhicks/esnext-router/issues"
},
"homepage": "https://github.com/robhicks/esnext-router#readme",
"engines": {
},
"devDependencies": {
"chai": "^3.5.0",
"istanbul": "^0.4.5",
"karma": "^1.3.0",
"karma-babel-preprocessor": "^6.0.1",
"karma-chai": "^0.1.0",
"karma-mocha": "^1.2.0",
"karma-mocha-reporter": "^2.2.0",
"karma-phantomjs-launcher": "^1.0.2",
"mocha": "^3.1.0",
"phantomjs-prebuilt": "^2.1.13",
"rollup": "^0.41.6",
"rollup-plugin-buble": "^0.15.0",
"sinon": "^2.1.0",
"sinon-chai": "^2.8.0",
"yarn": "^0.21.3"
},
"dependencies": {}
}