This repository has been archived by the owner on Mar 20, 2023. It is now read-only.
forked from krasimir/navigo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
63 lines (63 loc) · 1.91 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
61
62
63
{
"name": "navigo",
"version": "7.1.1",
"description": "A simple vanilla JavaScript router with a fallback for older browsers",
"main": "lib/navigo.cjs.js",
"browser": "lib/navigo.min.js",
"module": "lib/navigo.es.js",
"jsnext:main": "lib/navigo.es.js",
"dependencies": {},
"author": {
"name": "Krasimir Tsonev",
"email": "info@krasimirtsonev.com",
"url": "http://krasimirtsonev.com"
},
"license": "MIT",
"keywords": [
"router",
"vanilla",
"hash",
"history"
],
"repository": {
"type": "git",
"url": "git@github.com:krasimir/navigo.git"
},
"scripts": {
"watch": "rollup -c -w rollup.config.js --environment BUILD:development",
"build": "npm run build:dev && npm run build:prod",
"build:dev": "rollup -c rollup.config.js --environment BUILD:development",
"build:prod": "rollup -c rollup.config.js --environment BUILD:production",
"release": "npm run build && npm run test",
"test": "node ./test/karma.js",
"test-chrome": "node ./test/karma.js --browser=Chrome --watch=true",
"test-firefox": "node ./test/karma.js --browser=Firefox --watch=true"
},
"devDependencies": {
"babel": "6.23.0",
"babel-core": "6.26.0",
"babel-eslint": "8.2.1",
"babel-plugin-add-module-exports": "0.2.1",
"babel-preset-es2015": "6.24.1",
"babel-preset-stage-1": "6.24.1",
"babelify": "8.0.0",
"browserify": "16.0.0",
"chai": "4.1.2",
"eslint": "4.17.0",
"karma": "2.0.0",
"karma-browserify": "5.1.3",
"karma-chrome-launcher": "2.2.0",
"karma-firefox-launcher": "1.1.0",
"karma-mocha": "1.3.0",
"karma-mocha-reporter": "2.2.5",
"karma-phantomjs-launcher": "1.0.4",
"karma-source-map-support": "1.2.0",
"mocha": "5.0.0",
"rollup": "^0.55.3",
"rollup-plugin-babel": "^3.0.3",
"rollup-plugin-uglify": "^3.0.0",
"sinon": "4.2.2",
"sinon-chai": "2.14.0",
"watchify": "3.10.0"
}
}