-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
82 lines (82 loc) · 2.24 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
{
"private": true,
"workspaces": [
"packages/*"
],
"nohoist": [
"**"
],
"name": "posts-encrypt",
"version": "0.0.2",
"main": "packages/plugin/lib/index.js",
"repository": "https://github.com/alphawq/vuepress-plugin-posts-encrypt.git",
"bugs": {
"url": "https://github.com/alphawq/vuepress-plugin-posts-encrypt/issues",
"email": "alphawq@foxmail.com"
},
"scripts": {
"clean": "lerna clean && rm -rf node_modules",
"dev": "yarn build:encrypt && yarn dev:blog",
"dev:encrypt": "yarn workspace vuepress-plugin-posts-encrypt dev",
"dev:blog": "yarn workspace blog dev",
"build": "yarn build:encrypt && yarn build:blog",
"build:encrypt": "yarn workspace vuepress-plugin-posts-encrypt build",
"build:blog": "yarn workspace blog build",
"pkg:changed": "lerna changed",
"pkg:diff": "lerna diff",
"pkg:list": "lerna ls -l",
"postinstall": "husky install",
"prepublishOnly": "pinst --disable",
"postpublish": "pinst --enable",
"test": "jest --config scripts/jest.config.js --runInBand"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-lerna-changelog"
}
},
"lint-staged": {
"*.{js,json,css}": [
"eslint --fix",
"prettier --write"
],
"*.ts": [
"eslint --fix",
"prettier --parser=typescript --write"
]
},
"keywords": [
"vuepress",
"posts-encrypt",
"vuepress-plugin",
"vuepress-plugin-posts-encrypt"
],
"author": "Aphasia <alphawq@foxmail.com> (https://github.com/alphawq)",
"license": "MIT",
"devDependencies": {
"@commitlint/cli": "^13.1.0",
"@commitlint/config-conventional": "^13.1.0",
"@types/node": "~16.7.13",
"@typescript-eslint/eslint-plugin": "^4.31.1",
"@typescript-eslint/parser": "^4.31.1",
"babel-jest": "^27.2.0",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"husky": "^7.0.2",
"jest": "^27.2.0",
"lerna": "^4.0.0",
"less": "3.9.0",
"less-loader": "^5.0.0",
"lint-staged": "^11.1.2",
"pinst": "^2.1.6",
"prettier": "^2.4.0",
"ts-jest": "^27.0.5",
"typescript": "^4.4.2",
"vuepress": "^1.8.2",
"vuepress-types": "^0.9.4"
},
"engines": {
"node": ">=10"
}
}