forked from krasimir/navigo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
58 lines (58 loc) · 1.63 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
{
"name": "navigo",
"version": "4.3.6",
"description": "A simple vanilla JavaScript router with a fallback for older browsers",
"main": "lib/navigo.js",
"jsnext:main": "src/index.js",
"dependencies": {},
"author": {
"name": "Krasimir Tsonev",
"email": "[email protected]",
"url": "http://krasimirtsonev.com"
},
"license": "MIT",
"keywords": [
"router",
"vanilla",
"hash",
"history"
],
"repository": {
"type": "git",
"url": "[email protected]:krasimir/navigo.git"
},
"scripts": {
"dev": "WEBPACK_ENV=dev ./node_modules/.bin/webpack --progress --colors --watch",
"build": "WEBPACK_ENV=build ./node_modules/.bin/webpack",
"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.3.26",
"babel-core": "6.4.5",
"babel-eslint": "6.1.2",
"babel-loader": "6.2.1",
"babel-plugin-add-module-exports": "0.1.2",
"babel-preset-es2015": "6.3.13",
"babel-preset-stage-1": "6.3.13",
"babelify": "7.3.0",
"browserify": "13.1.1",
"chai": "3.5.0",
"eslint": "1.10.3",
"eslint-loader": "1.2.1",
"karma": "1.3.0",
"karma-browserify": "5.1.0",
"karma-chrome-launcher": "2.0.0",
"karma-firefox-launcher": "1.0.0",
"karma-mocha": "1.2.0",
"karma-mocha-reporter": "2.2.0",
"karma-phantomjs-launcher": "1.0.2",
"karma-source-map-support": "1.2.0",
"mocha": "2.4.5",
"sinon": "1.17.3",
"sinon-chai": "2.8.0",
"watchify": "3.7.0",
"webpack": "1.12.12"
}
}