-
-
Notifications
You must be signed in to change notification settings - Fork 21
/
Copy pathpackage.json
56 lines (56 loc) · 1.73 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
{
"name": "routerjs",
"basename": "router",
"version": "2.4.5",
"description": "Lightweight and powerful router for javascript applications",
"author": "Fabrizio Ruggeri <fabrizio.ruggeri@gmail.com>",
"website": "https://www.ramielcreations.com/router-js/",
"repository": {
"type": "git",
"url": "https://github.com/ramiel/router.js"
},
"dependencies": {
"path-to-regexp": "^3.1.0"
},
"devDependencies": {
"@jedmao/location": "^3.0.0",
"@types/jest": "^24.0.16",
"@typescript-eslint/eslint-plugin": "^1.13.0",
"@typescript-eslint/parser": "^2.29.0",
"concurrently": "^5.2.0",
"eslint": "^5.16.0",
"eslint-config-airbnb-base": "^13.2.0",
"eslint-config-prettier": "^6.0.0",
"eslint-import-resolver-jest": "^2.1.2",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-jest": "^22.14.1",
"eslint-plugin-prettier": "^3.1.0",
"jest": "^26.0.1",
"jest-mock-console": "^1.0.0",
"prettier": "^1.18.2",
"rollup": "^1.17.0",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-typescript2": "^0.22.1",
"ts-jest": "^26.1.0",
"typescript": "^3.9.5"
},
"main": "dist/router.cjs.js",
"module": "dist/router.esm.js",
"types": "dist/index.d.ts",
"scripts": {
"lint": "eslint . --ext .ts",
"test-only": "NODE_ENV=test jest",
"test-watch": "npm run test-only -- --watch",
"test": "npm run lint && npm run test-only -- --coverage",
"build": "NODE_ENV=production rollup -c",
"build-watch": "rollup -c -w",
"dev": "NODE_ENV=development concurrently --kill-others \"npm run build-watch\"",
"prepare": "npm run build"
},
"sideEffects": false,
"files": [
"dist"
],
"license": "GPL-2.0"
}