-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
72 lines (72 loc) · 2.25 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
{
"name": "vue-router-middleware-plugin",
"version": "3.1.1",
"description": "A vue.js plugin to implement a middleware pipeline between your routes.",
"main": "build/index.js",
"types": "build/index.d.ts",
"files": [
"build/"
],
"scripts": {
"type-check": "tslint-config-prettier-check ./tslint.json",
"type-check:watch": "tsc --noEmit --watch",
"prebuild": "npm run lint",
"build": "npm run build:types && npm run build:js",
"build:types": "tsc --emitDeclarationOnly",
"build:js": "babel src --out-dir build --extensions \".ts,.tsx\" --source-maps inline",
"test": "jest --coverage",
"docs:dev": "vuepress dev docs",
"docs:build": "vuepress build docs",
"semantic-release": "semantic-release",
"lint": "prettier --check src/**/*.ts",
"lint:fix": "tslint --fix --project ./",
"precommit": "npm run lint && tsc --noEmit && npm run type-check && npm run test",
"commit": "git-cz"
},
"devDependencies": {
"@babel/cli": "7.10.0",
"@babel/core": "7.10.0",
"@babel/plugin-proposal-class-properties": "7.8.3",
"@babel/plugin-proposal-numeric-separator": "7.8.3",
"@types/node": "13.13.9",
"@babel/plugin-proposal-object-rest-spread": "7.10.0",
"@babel/preset-env": "7.10.0",
"@babel/preset-typescript": "7.9.0",
"@types/jest": "25.2.3",
"cz-conventional-changelog": "3.2.0",
"commitizen": "4.1.2",
"ghooks": "2.0.4",
"jest": "26.0.1",
"prettier": "2.0.5",
"regenerator-runtime": "0.13.3",
"semantic-release": "16.0.4",
"ts-jest": "26.5.1",
"tslint": "5.20.1",
"tslint-config-prettier": "1.18.0",
"tslint-plugin-prettier": "2.3.0",
"vuepress": "1.5.0",
"typescript": "3.9.3"
},
"repository": {
"type": "git",
"url": "https://github.com/dsfx3d/vue-router-middleware-plugin.git"
},
"author": "Yashodhan Singh <[email protected]>",
"license": "MIT",
"keywords": [
"vue",
"vue-router",
"middleware",
"middleware-pipeline",
"plugin"
],
"bugs": {
"url": "https://github.com/dsfx3d/vue-router-middleware-plugin/issues"
},
"homepage": "https://github.com/dsfx3d/vue-router-middleware-plugin",
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}