-
Notifications
You must be signed in to change notification settings - Fork 47
/
Copy pathpackage.json
87 lines (87 loc) · 2.4 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
76
77
78
79
80
81
82
83
84
85
86
87
{
"name": "vue-command",
"version": "35.2.1",
"description": "A fully working, most feature-rich Vue.js terminal emulator",
"author": {
"email": "[email protected]",
"name": "Julian Claus",
"url": "https://www.julian-claus.de"
},
"private": false,
"engines": {
"node": ">=16.0.0"
},
"repository": {
"type": "git",
"url": "https://github.com/ndabAP/vue-command.git"
},
"license": "MIT",
"keywords": [
"bash",
"emulator",
"sh",
"shell",
"terminal",
"vue",
"vuejs",
"xterm"
],
"main": "./dist/vue-command.common.js",
"files": [
"dist/*.css",
"dist/*.css.map",
"dist/*.js",
"dist/*.js.map"
],
"scripts": {
"build": "yarn lint && yarn build:docs && yarn build:lib",
"build:docs": "vue-cli-service build --dest docs",
"build:lib": "vue-cli-service build --target lib --name vue-command ./src/library.js",
"lint": "vue-cli-service lint",
"serve": "vue-cli-service serve",
"test": "vue-cli-service test:unit"
},
"dependencies": {
"core-js": "^3.37.0",
"lodash": "^4.17.21",
"register-service-worker": "^1.7.2",
"vue": "^3.3.12"
},
"devDependencies": {
"@commitlint/cli": "^17.8.1",
"@commitlint/config-conventional": "^17.6.6",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/commit-analyzer": "^9.0.2",
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^8.1.0",
"@semantic-release/npm": "^9.0.2",
"@semantic-release/release-notes-generator": "^10.0.3",
"@vue/cli-plugin-babel": "~4.5.13",
"@vue/cli-plugin-eslint": "~4.5.13",
"@vue/cli-plugin-pwa": "~4.5.13",
"@vue/cli-plugin-unit-jest": "~4.5.13",
"@vue/cli-service": "~4.5.13",
"@vue/compiler-sfc": "^3.2.47",
"@vue/eslint-config-standard": "^5.1.2",
"@vue/test-utils": "^2.4.5",
"babel-eslint": "^10.1.0",
"eslint": "^6.8.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-modules-newline": "^0.0.6",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.3.1",
"eslint-plugin-standard": "^4.1.0",
"eslint-plugin-vue": "^7.20.0",
"husky": "^8.0.3",
"sass": "^1.75.0",
"sass-loader": "^8.0.2",
"semantic-release": "^19.0.5",
"vue-jest": "^5.0.0-0"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS; yarn lint --fix",
"pre-push": "yarn test"
}
}
}