-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.35 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.35 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
{
"name": "hexo-theme-stun-cli",
"private": true,
"scripts": {
"style": "prettier --write **/*.js",
"lint": "eslint packages/**/*.js packages/**/bin/*.js",
"lint:fix": "eslint --fix packages/**/*.js packages/**/bin/*.js",
"lerna:rmlock": "rm -rf ./packages/**/**/package-lock.json ./packages/**/**/node_modules",
"lerna:install": "npm i",
"prerelease": "npm run lerna:rmlock && npm run lerna:install",
"release": "lerna publish",
"release:force": "lerna publish --force-publish *"
},
"repository": {
"type": "git",
"url": "https://github.com/theme-stun/cli"
},
"keywords": [
"Hexo",
"Stun",
"CLI"
],
"author": "liuyib",
"license": "MIT",
"bugs": {
"url": "https://github.com/theme-stun/cli/issues"
},
"husky": {
"hooks": {
"pre-commit": "npm run style && lint-staged"
}
},
"lint-staged": {
"*.js": [
"eslint --fix"
],
"packages/**/bin/*": [
"eslint --fix"
]
},
"devDependencies": {
"eslint": "^7.10.0",
"eslint-config-prettier": "^6.12.0",
"eslint-plugin-prettier": "^3.1.4",
"husky": "^4.3.0",
"lerna": "^3.22.1",
"lint-staged": "^10.4.0",
"prettier": "^2.1.2"
},
"dependencies": {
"@theme-stun/cli": "file:packages\\@theme-stun\\cli",
"@theme-stun/cli-utils": "file:packages\\@theme-stun\\cli-utils"
}
}