forked from krasimir/navigo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.25 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
{
"name": "navigo",
"version": "2.1.1",
"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": "mocha --compilers js:babel-core/register --colors -w ./test/*.spec.js",
"release": "./node_modules/.bin/webpack --progress --colors && npm run build && npm publish"
},
"devDependencies": {
"babel": "6.3.26",
"babel-core": "6.4.5",
"babel-eslint": "5.0.0-beta6",
"babel-loader": "6.2.1",
"babel-plugin-add-module-exports": "0.1.2",
"babel-preset-es2015": "6.3.13",
"chai": "3.5.0",
"eslint": "1.10.3",
"eslint-loader": "1.2.1",
"mocha": "2.4.5",
"sinon": "1.17.3",
"sinon-chai": "2.8.0",
"webpack": "1.12.12"
}
}