forked from jiegouyun/outreaderjs
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
78 lines (78 loc) · 2.29 KB
/
package.json
File metadata and controls
78 lines (78 loc) · 2.29 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
{
"name": "outreader",
"scripts": {
"lint": "prettier --write packages/**/*.{ts,js,tsx} fixtures/test-result/**/*.ts docs/**/*.js",
"lint:check": "prettier --check packages/**/*.{ts,js,tsx}",
"test:yjk": "cd packages/outreader-yjk && yarn test",
"test:pkpm": "cd packages/outreader-pkpm && yarn test",
"dev:client": "cd packages/outreader-client && yarn dev",
"build": "lerna run build",
"build:core": "cd packages/outreader-core && yarn build",
"build:yjk": "cd packages/outreader-yjk && yarn build",
"build:pkpm": "cd packages/outreader-pkpm && yarn build",
"cli": "./packages/outreader-cli/bin/run",
"dev:docs": "vuepress dev docs",
"build:docs": "vuepress build docs",
"package:client": "cd packages/outreader-client && yarn package-win",
"package-ci:client": "cd packages/outreader-client && yarn package-ci"
},
"devDependencies": {
"@types/jest": "^26.0.10",
"lerna": "^3.22.0",
"lint-staged": "^10.2.9",
"stylelint": "^13.6.0",
"typescript": "^4.0.2",
"vuepress": "^1.5.0"
},
"dependencies": {
"commitizen": "^4.1.2",
"cz-conventional-changelog": "^3.2.0",
"husky": "^4.2.5",
"prettier": "^2.0.5"
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": ["yarn lint:check"],
"{*.json,.{babelrc,eslintrc,prettierrc,stylelintrc}}": [
"prettier --ignore-path .eslintignore --parser json --write"
],
"*.{css,scss}": [
"stylelint --ignore-path .eslintignore --syntax scss --fix",
"prettier --ignore-path .eslintignore --single-quote --write"
],
"*.{html,md,yml}": [
"prettier --ignore-path .eslintignore --single-quote --write"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"author": {
"name": "an-lee",
"email": "an.lee.work@gmail.com",
"url": "https://outreader.com"
},
"contributors": [
{
"name": "ym6",
"email": "yangml.work@gmail.com",
"url": "https://github.com/ym6"
}
],
"bugs": {
"url": "https://github.com/jiegouyun/outreaderjs/issues"
},
"homepage": "https://outreader.com",
"private": false,
"license": "Apache-2.0",
"version": "0.0.2",
"publishConfig": {
"access": "public"
}
}