-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
75 lines (75 loc) · 2.36 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
75
{
"name": "git-kanban-enhanced-extension",
"version": "0.0.8",
"description": "Kanban browser extensions for github, gitlab, bitbucket, and gitea",
"author": "lastlink <[email protected]>",
"license": "MIT",
"private": false,
"engines": {
"node": ">=8.0.0 <15.0.0"
},
"scripts": {
"serve": "vue-cli-service serve",
"build": "vue-cli-service build --mode cProduction",
"build:manifest": "node core/build-manifest.js",
"watch": "vue-cli-service build --mode development --watch",
"build-zip": "node core/build-zip.js",
"test:unit": "vue-cli-service test:unit",
"test:coverage": "vue-cli-service test:unit --coverage",
"test:watch": "npm run test:unit -- --watchAll",
"lint": "vue-cli-service lint",
"lint:fix": "vue-cli-service lint --fix"
},
"dependencies": {
"babel-plugin-transform-remove-console": "^6.9.4",
"core-js": "^3.7.0",
"vue": "^2.6.11",
"vue-class-component": "^7.2.3",
"vue-property-decorator": "^9.0.2",
"vue-resource": "^1.5.1",
"vuex": "^3.5.1"
},
"devDependencies": {
"@types/chrome": "^0.0.126",
"@types/jest": "^26.0.15",
"@types/jsdom": "^16.2.5",
"@types/node": "^14.14.7",
"@types/yargs": "^15.0.9",
"@typescript-eslint/eslint-plugin": "^2.33.0",
"@typescript-eslint/parser": "^2.33.0",
"@vue/cli-plugin-babel": "~4.5.0",
"@vue/cli-plugin-eslint": "~4.5.0",
"@vue/cli-plugin-typescript": "~4.5.0",
"@vue/cli-plugin-unit-jest": "~4.5.0",
"@vue/cli-service": "~4.5.0",
"@vue/eslint-config-prettier": "^6.0.0",
"@vue/eslint-config-typescript": "^5.0.2",
"@vue/test-utils": "^1.0.3",
"archiver": "^5.0.2",
"babel-plugin-require-context-hook": "^1.0.0",
"copy-webpack-plugin": "^4.5.3",
"eslint": "^6.7.2",
"eslint-plugin-prettier": "^3.1.3",
"eslint-plugin-vue": "^7.1.0",
"jest-chrome": "^0.7.0",
"jest-junit": "^12.0.0",
"jest-webextension-mock": "^3.7.3",
"lint-staged": "^10.5.1",
"prettier": "^2.1.2",
"typescript": "~4.0.5",
"vue-template-compiler": "^2.6.11",
"web-ext-types": "^3.2.1",
"webextension-polyfill": "^0.7.0",
"webextension-polyfill-ts": "^0.21.0",
"yargs": "^16.1.0"
},
"gitHooks": {
"pre-commit": "lint-staged"
},
"lint-staged": {
"*.{js,jsx,vue,ts,tsx}": [
"vue-cli-service lint",
"git add"
]
}
}