-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
83 lines (83 loc) · 1.9 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
{
"private": true,
"workspaces": {
"packages": [
"packages/@w6s/*",
"packages/test/*"
]
},
"scripts": {
"lint": "eslint --fix packages/**/*.js packages/**/bin/*",
"lint-without-fix": "eslint packages/**/*.js packages/**/bin/*",
"test": "jest",
"docs:dev": "vuepress dev docs",
"docs:build": "vuepress build docs",
"docs:deploy": "./scripts/deploy.sh",
"release": "lerna publish --no-commit-hooks",
"release:force": "lerna publish --no-commit-hooks --force-publish"
},
"gitHooks": {
"pre-commit": "lint-staged",
"commit-msg": "node scripts/verifyCommitMsg.js"
},
"lint-staged": {
"*.{js}": [
"eslint --fix",
"git add"
],
"packages/**/bin/*": [
"eslint --fix",
"git add"
]
},
"jest": {
"testEnvironment": "node",
"setupFiles": [],
"testMatch": [
"**/__tests__/**/*.spec.js"
]
},
"dependencies": {
"vue": "2.6.12",
"vue-server-renderer": "2.6.12",
"vuepress-theme-default-prefers-color-scheme": "^2.0.0"
},
"devDependencies": {
"chalk": "^4.0.0",
"eslint": "6.8.0",
"eslint-config-airbnb-base": "14.1.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-import": "^2.20.1",
"eslint-plugin-node": "^11.1.0",
"jest": "^25.4.0",
"lerna": "^3.20.2",
"lerna-changelog": "^1.0.1",
"lint-staged": "^10.1.7",
"vuepress": "^1.7.1",
"yorkie": "^2.0.0"
},
"preferGlobal": true,
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/WorkPlusFE/w6s-cli.git"
},
"keywords": [
"cli",
"workplus-cli",
"w6s-cli",
"workplus",
"w6s"
],
"author": "WorkPlusFE",
"license": "MIT",
"bugs": {
"url": "https://github.com/WorkPlusFE/w6s-cli/issues"
},
"homepage": "https://github.com/WorkPlusFE/w6s-cli#readme",
"engines": {
"node": ">=10"
}
}