UNPKG

1.72 kBJSONView Raw
1{
2 "name": "vue-route-generator",
3 "version": "1.0.0",
4 "author": "katashin",
5 "description": "Vue Router route config generator",
6 "keywords": [
7 "Vue",
8 "Vue Router",
9 "routing",
10 "generator"
11 ],
12 "license": "MIT",
13 "main": "lib/index.js",
14 "typings": "lib/index.d.ts",
15 "files": [
16 "lib"
17 ],
18 "homepage": "https://github.com/ktsn/vue-route-generator",
19 "bugs": "https://github.com/ktsn/vue-route-generator/issues",
20 "repository": {
21 "type": "git",
22 "url": "https://github.com/ktsn/vue-route-generator.git"
23 },
24 "scripts": {
25 "prepublishOnly": "npm run clean && npm run test && npm run build",
26 "clean": "rm -rf lib",
27 "build": "tsc -p src",
28 "dev": "jest --watch",
29 "lint": "tslint -p . && prettier --list-different \"{src,scripts,test}/**/*.{js,ts}\"",
30 "format": "prettier --write \"{src,scripts,test}/**/*.{js,ts}\"",
31 "test": "npm run lint && npm run test:unit",
32 "test:unit": "jest"
33 },
34 "jest": {
35 "transform": {
36 "^.+\\.ts$": "ts-jest"
37 },
38 "testRegex": "/test/.+\\.spec\\.(js|ts)$",
39 "moduleFileExtensions": [
40 "ts",
41 "js",
42 "json"
43 ],
44 "globals": {
45 "ts-jest": {
46 "tsconfig": "test/tsconfig.json"
47 }
48 }
49 },
50 "devDependencies": {
51 "@types/jest": "^26.0.19",
52 "@types/node": "^14.14.20",
53 "@types/prettier": "^2.1.6",
54 "@vue/compiler-sfc": "^3.0.5",
55 "jest": "^26.6.3",
56 "ts-jest": "^26.4.4",
57 "tslint": "^6.1.3",
58 "tslint-config-ktsn": "^2.1.0",
59 "tslint-config-prettier": "^1.18.0",
60 "typescript": "^4.1.3",
61 "vue": "^3.0.5",
62 "vue-template-compiler": "^2.6.12"
63 },
64 "dependencies": {
65 "fast-glob": "^3.2.4",
66 "prettier": "2.2.1"
67 }
68}