-
Notifications
You must be signed in to change notification settings - Fork 113
/
package.json
60 lines (60 loc) · 1.84 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
{
"name": "badge-generator",
"version": "2.24.0",
"scripts": {
"lint:check": "vue-cli-service lint --no-fix --max-warnings 10",
"lint:fix": "vue-cli-service lint",
"compile": "tsc -p . --noEmit",
"test:unit": "vue-cli-service test:unit --detectOpenHandles",
"test:coverage": "vue-cli-service test:unit --detectOpenHandles --coverage",
"serve": "vue-cli-service serve",
"start": "yarn serve",
"build": "vue-cli-service build",
"preversion": "git pull --rebase && git fetch --tags && yarn lint:check && yarn test:unit",
"version": "yarn build",
"postversion": "git push --follow-tags --no-verify"
},
"dependencies": {
"markdown-it": "^14.1.0",
"vue": "^3.4.27",
"vue-router": "^4.3.2"
},
"devDependencies": {
"@types/jest": "^27.0.3",
"@types/markdown-it": "^12.2.3",
"@typescript-eslint/eslint-plugin": "^5.4.0",
"@typescript-eslint/parser": "^5.4.0",
"@vue/cli-plugin-eslint": "~5.0.4",
"@vue/cli-plugin-router": "~5.0.4",
"@vue/cli-plugin-typescript": "~5.0.4",
"@vue/cli-plugin-unit-jest": "~5.0.4",
"@vue/cli-service": "~5.0.4",
"@vue/compiler-sfc": "^3.2.22",
"@vue/eslint-config-prettier": "^7.0.0",
"@vue/eslint-config-typescript": "^11.0.0",
"@vue/test-utils": "^2.0.0-0",
"@vue/vue3-jest": "^29.2.6",
"eslint": "^8.13.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-vue": "^9.1.0",
"prettier": "^2.4.1",
"ts-jest": "^27.1.4",
"typescript": "^4.6.3",
"vue-plugin": "^0.0.1"
},
"engines": {
"node": ">=16"
},
"author": "MichaelCurrin",
"license": "MIT",
"homepage": "https://github.com/MichaelCurrin/badge-generator#readme",
"repository": {
"type": "git",
"url": "https://github.com/MichaelCurrin/badge-generator"
},
"browserslist": [
"> 1%",
"last 2 versions",
"not dead"
]
}