-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
55 lines (55 loc) · 1.46 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
{
"name": "@yiotis/easyroutes",
"version": "1.0.0",
"description": "Effortless management of named routes for JavaScript applications",
"main": "dist/main.js",
"scripts": {
"start": "webpack-dev-server --progress --inline --hot",
"dev": "webpack --mode development",
"build": "webpack --mode production",
"test": "jest",
"coverage": "jest --coverage",
"showcoverage": "xdg-open ./coverage/lcov-report/index.html",
"lint": "./node_modules/.bin/eslint ."
},
"keywords": [
"easy",
"routes",
"router",
"javascript",
"url",
"params",
"named",
"routes",
"search",
"hash"
],
"author": "Yiotis Kaltsikis <[email protected]>",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/giotiskl/easyroutes.git"
},
"bugs": {
"url": "https://github.com/giotiskl/easyroutes/issues"
},
"homepage": "https://github.com/giotiskl/easyroutes#readme",
"devDependencies": {
"babel-core": "^6.26.3",
"babel-loader": "^7.1.4",
"babel-preset-env": "^1.7.0",
"eslint": "^4.19.1",
"eslint-config-airbnb-base": "^12.1.0",
"eslint-config-prettier": "^2.9.0",
"eslint-loader": "^2.0.0",
"eslint-plugin-import": "^2.12.0",
"html-loader": "^0.5.5",
"html-webpack-plugin": "^3.2.0",
"jest": "^23.1.0",
"prettier": "1.13.4",
"webpack": "^4.10.2",
"webpack-cli": "^3.0.1",
"webpack-dev-server": "^3.1.4"
},
"dependencies": {}
}