-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
44 lines (44 loc) · 1.18 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
{
"name": "vanilla-ui-router",
"version": "1.2.2",
"description": "Simple vanilla JavaScript router",
"homepage": "https://github.com/micromata/vanilla-ui-router",
"author": "René Viering",
"repository": "micromata/vanilla-ui-router",
"main": "dist/vanilla-ui-router.js",
"files": [
"dist"
],
"scripts": {
"test": "jest --coverage",
"test:dev": "jest --watch",
"test:cov": "jest --coverage",
"build": "rollup -c",
"build:prod": "rollup -c rollup.prod.config.js",
"coveralls": "cat ./coverage/lcov.info | ./node_modules/.bin/coveralls"
},
"license": "MIT",
"devDependencies": {
"babel-jest": "22.0.0",
"babel-polyfill": "^6.16.0",
"babel-preset-es2015": "^6.18.0",
"babel-preset-es2015-rollup": "^3.0.0",
"coveralls": "^3.0.0",
"eslint": "^4.0.0",
"eslint-config-xo": "0.19.0",
"jest-cli": "21.2.1",
"rollup": "^0.53.0",
"rollup-plugin-babel": "^3.0.2",
"rollup-plugin-commonjs": "8.2.6",
"rollup-plugin-node-resolve": "3.0.0",
"rollup-plugin-sourcemaps": "^0.4.1",
"rollup-plugin-uglify": "^2.0.1",
"sinon": "4.1.3"
},
"keywords": [
"router",
"routing",
"frontend",
"spa"
]
}