-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1011 Bytes
/
package.json
File metadata and controls
48 lines (48 loc) · 1011 Bytes
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
{
"name": "@grafikri/vue-middleware",
"version": "1.0.0",
"description": "Middleware for Vue",
"main": "dist/index.js",
"types": "types/index.d.ts",
"author": "Serhan Coşkun",
"scripts": {
"dev": "tsc --watch",
"build": "tsc",
"prepare": "npm run build",
"test": "jest",
"pretest": "npm run prepare",
"prepublish": "npm run test",
"test:watch": "jest --watch"
},
"devDependencies": {
"@types/jest": "^26.0.15",
"nodemon": "^2.0.4",
"typescript": "^4.0.2",
"vue": "^2.6.12",
"vue-router": "^3.4.9",
"jest": "^24.9.0",
"ts-jest": "^24.3.0"
},
"repository": {
"type": "git",
"url": "https://github.com/grafikri/vue-middleware.git"
},
"bugs": {
"url": "https://github.com/grafikri/vue-middleware/issues"
},
"files": [
"dist",
"types"
],
"jest": {
"preset": "ts-jest",
"testEnvironment": "node"
},
"keywords": [
"middleware",
"vue",
"router",
"route"
],
"license": "ISC"
}