-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
74 lines (74 loc) · 2.19 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
69
70
71
72
73
74
{
"name": "yourrouter",
"version": "2.0.5",
"description": "A powerful router based on client-side routing.",
"type": "module",
"main": "./lib/index.js",
"types": "./lib/index.d.ts",
"exports": {
".": "./lib/index.js",
"./types": "./lib/types.js"
},
"typesVersions": {
"*": {
"types": [
"lib/types.d.ts"
]
}
},
"directories": {
"lib": "lib"
},
"scripts": {
"build": "npm run build:prepare && tsc --project tsconfig.production.json && npm run build:post",
"build:post": "npm run build:declarations && tsc-alias -p tsconfig.production.json ",
"build:prepare": "sh ./scripts/pre-build.sh",
"build:declarations": "tsc --project tsconfig.declarations.json",
"build:watch": "npm run build && (concurrently \"tsc -w --project tsconfig.production.json\" \"tsc-alias -w\")",
"dev": "tsc --watch",
"lint": "eslint",
"lint:fix": "eslint --fix",
"prepare": "npm run build",
"test": "vitest --watch=false --environment=jsdom",
"test:coverage": "sh ./scripts/pre-coverage.sh && vitest run --coverage --environment=jsdom",
"test:vite": "npm run build && vite",
"test:watch": "vitest --environment=jsdom"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ch3ber/yourRouter.git"
},
"keywords": [
"javascript",
"vanilla-router",
"frontend-router",
"client-side",
"router",
"router.js",
"yourrouter"
],
"author": "Eber Edrey Alejo Berrones <eber4202@hotmail.com> (https://ch3ber.github.io)",
"license": "MIT",
"bugs": {
"url": "https://github.com/ch3ber/yourRouter/issues"
},
"homepage": "https://ch3ber.github.io/yourRouter",
"devDependencies": {
"@typescript-eslint/eslint-plugin": "6.0.0",
"@typescript-eslint/parser": "6.0.0",
"@vitest/browser": "0.33.0",
"@vitest/coverage-v8": "0.33.0",
"concurrently": "8.2.0",
"eslint": "8.44.0",
"eslint-config-standard": "17.1.0",
"eslint-plugin-import": "2.27.5",
"eslint-plugin-n": "16.0.1",
"eslint-plugin-promise": "6.1.1",
"jsdom": "22.1.0",
"playwright": "1.36.1",
"tsc-alias": "1.8.7",
"typescript": "5.1.6",
"vite": "4.4.3",
"vitest": "0.33.0"
}
}