This repository has been archived by the owner on Jul 21, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
68 lines (68 loc) · 1.88 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
64
65
66
67
68
{
"name": "easyroute-core",
"version": "1.4.4",
"description": "Framework-agnostic router for JavaScript single-page applications in style of Vue Router",
"main": "lib/dist/index.js",
"types": "lib/dist/index.d.ts",
"scripts": {
"test": "jest",
"build": "rollup -c",
"dev": "rollup --mode=development -c -w",
"lint": "eslint '*/**/*.{js,ts}' --fix",
"test:lint": "npm run lint && npm run test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/lyohaplotinka/easyroute.git"
},
"keywords": [
"javascript",
"spa",
"router",
"single",
"page",
"application"
],
"author": "Lyoha Plotinka",
"license": "MIT",
"bugs": {
"url": "https://github.com/lyohaplotinka/easyroute/issues"
},
"homepage": "https://github.com/lyohaplotinka/easyroute#readme",
"devDependencies": {
"@babel/polyfill": "^7.12.1",
"@babel/preset-env": "^7.10.4",
"@rollup/plugin-typescript": "^6.0.0",
"@types/jest": "^26.0.0",
"@types/lodash": "^4.14.155",
"@types/node": "^14.0.13",
"@types/path-to-regexp": "^1.7.0",
"@types/query-string": "^6.3.0",
"@types/url-join": "^4.0.0",
"@typescript-eslint/eslint-plugin": "^3.4.0",
"@typescript-eslint/parser": "^3.4.0",
"babel-jest": "^26.1.0",
"docsify-cli": "^4.4.3",
"eslint": "^7.3.1",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-prettier": "^3.1.4",
"husky": "^4.2.5",
"jest": "^26.1.0",
"lint-staged": "^10.4.0",
"node-notifier": ">=8.0.1",
"prettier": "^2.0.5",
"regexparam": "^1.3.0",
"rollup": "^2.26.11",
"rollup-plugin-cleaner": "^1.0.0",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-node-resolve": "^5.2.0",
"tslib": "^2.0.1",
"typedoc": "^0.20.32",
"typescript": "^3.9.7"
},
"husky": {
"hooks": {
"pre-commit": "npm run test && lint-staged"
}
}
}