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
| {
| "name": "jsek-applet",
| "version": "1.0.0",
| "description": "",
| "main": "app.js",
| "scripts": {
| "test": "echo \"Error: no test specified\" && exit 1",
| "lint": "eslint --cache --fix --ext .js",
| "check": "node config/eslintCheck.js",
| "prepare": "husky install",
| "changelog": "conventional-changelog -p angular -i CHANGELOG.md -s"
| },
| "author": "",
| "license": "ISC",
| "config": {
| "commitizen": {
| "path": "./node_modules/cz-conventional-changelog"
| }
| },
| "lint-staged": {
| "*.{js, ts}": "eslint --cache --fix",
| "*.{js,ts,wxml,html,json,css,less}": [
| "prettier --write"
| ]
| },
| "dependencies": {
| "epub.js": "^0.2.15",
| "moment": "^2.30.1",
| "mp-html": "^2.4.3",
| "spark-md5": "^3.0.2",
| "tdesign-miniprogram": "^1.0.0",
| "tslib": "^1.11.1",
| "wxml2canvas": "^1.0.1"
| },
| "devDependencies": {
| "@commitlint/cli": "^17.4.2",
| "@commitlint/config-conventional": "^17.4.2",
| "commitizen": "^4.3.0",
| "conventional-changelog-cli": "^2.2.2",
| "cz-conventional-changelog": "^3.3.0",
| "eslint": "^6.8.0",
| "eslint-config-prettier": "^6.10.0",
| "eslint-plugin-import": "^2.20.1",
| "eslint-plugin-prettier": "^3.1.2",
| "husky": "^8.0.3",
| "lint-staged": "^10.0.8",
| "prettier": "^2.1.2"
| }
| }
|
|