This repository was archived by the owner on Aug 7, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
89 lines (89 loc) · 2.73 KB
/
package.json
File metadata and controls
89 lines (89 loc) · 2.73 KB
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
88
89
{
"name": "copy-paste-actions",
"version": "2.3.0",
"private": true,
"scripts": {
"serve": "vue-cli-service serve",
"build": "vue-cli-service build && vue-cli-service build --mode targz --no-clean && node scripts/postbuild.js && npm run generateLanguageFile",
"build:main": "vue-cli-service build && node scripts/postbuild.js",
"build:targz": "vue-cli-service build --mode targz && node scripts/postbuild.js",
"coverage": "nyc npm test",
"format": "prettier-eslint --write \"%INIT_CWD%/@(src|scripts|public|test)/**/*.@(js|ts|json|vue)\"",
"generateLanguageFile": "node scripts/generateLanguageFile.js",
"getVersionFromRoutineHub": "node scripts/getVersionFromRoutineHub.js",
"remoteConsoleServer": "node scripts/remoteConsoleServer.js",
"test": "node test/test-starter.js"
},
"dependencies": {
"bootstrap": "^4.6.0",
"bootstrap-vue": "^2.21.2",
"bplist-creator": "^0.1.0",
"bplist-parser": "^0.3.0",
"core-js": "^3.12.1",
"deep-eql": "^4.0.0",
"flexsearch": "^0.6.32",
"gzip-js": "^0.3.2",
"highlight.js": "^10.7.2",
"jszip": "^3.6.0",
"lodash": "^4.17.21",
"plist": "^3.0.2",
"smoothscroll-polyfill": "^0.4.4",
"tarballjs": "git+https://github.com/schl3ck/tarballjs.git#v0.2.1",
"uuid": "^8.3.2",
"vue": "^2.6.12",
"vue-router": "^3.5.1",
"vuex": "^3.6.2"
},
"devDependencies": {
"@vue/babel-helper-vue-jsx-merge-props": "^1.2.1",
"@vue/babel-preset-jsx": "^1.2.4",
"@vue/cli-plugin-babel": "^4.5.13",
"@vue/cli-plugin-eslint": "^4.5.13",
"@vue/cli-service": "^4.5.13",
"@vue/eslint-config-standard": "^6.0.0",
"babel-eslint": "^10.0.3",
"chai": "^4.3.4",
"eslint": "^7.26.0",
"eslint-disable": "^1.0.2",
"eslint-plugin-import": "^2.23.2",
"eslint-plugin-node": "^11.0.0",
"eslint-plugin-promise": "^5.1.0",
"eslint-plugin-standard": "^5.0.0",
"eslint-plugin-vue": "^7.9.0",
"express": "^4.17.1",
"extra-watch-webpack-plugin": "^1.0.3",
"glob": "^7.1.7",
"lint-staged": "^11.0.0",
"markdown-it": "^12.0.6",
"markdown-it-anchor": "^7.1.0",
"markdown-it-attrs": "^4.0.0",
"markdown-it-container": "^3.0.0",
"mocha": "^8.4.0",
"nyc": "^15.1.0",
"prettier-eslint-cli": "^5.0.1",
"raw-loader": "^4.0.2",
"sass": "^1.32.13",
"sass-loader": "^10.2.0",
"url-loader": "^4.1.1",
"vue-template-compiler": "^2.6.12",
"webpack-bundle-analyzer": "^4.4.2",
"worker-loader": "^3.0.8"
},
"gitHooks": {
"pre-commit": "lint-staged"
},
"lint-staged": {
"*.{js,vue,json,ts}": [
"prettier-eslint --write"
]
},
"nyc": {
"include": [
"src/utils/**"
],
"reporter": [
"text-summary",
"html"
]
}
}