forked from wechaty/docusaurus
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
90 lines (90 loc) · 2.73 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
84
85
86
87
88
89
90
{
"name": "wechaty.js.org",
"version": "0.6.52",
"description": "Wechaty Homepage",
"private": true,
"directories": {
"doc": "docs"
},
"scripts": {
"fit-image": "./scripts/fit-image.sh",
"lint": "npm run lint:es && npm run lint:ts && npm run lint:md && npm run lint:fn && npm run lint:yml",
"lint:es": "eslint \"src/**/*.ts\" \"tests/**/*.spec.ts\" --ignore-pattern tests/fixtures/",
"lint:ts": "tsc --noEmit",
"lint:md": "markdownlint --ignore _site/ --ignore node_modules/ '**/*.md'",
"lint:fn": "file-name-linter .file-name-linter.json",
"lint:yml": "true || yamllint jekyll/_data/*.yml",
"test": "npm run lint && npm run test:unit",
"test:unit": "ts-node --files ./node_modules/.bin/blue-tape 'src/**/*.spec.ts' 'tests/**/*.spec.ts'",
"build": "npm run docusaurus:build && npm run jekyll:build",
"build:docusaurus": "npm run docusaurus:build",
"jekyll:build": "cd jekyll && make build",
"docusaurus:start": "cd docusaurus && docusaurus start",
"docusaurus:build": "cd docusaurus && docusaurus build",
"docusaurus:swizzle": "docusaurus swizzle",
"docusaurus:deploy": "docusaurus deploy",
"docusaurus:serve": "docusaurus serve"
},
"repository": {
"type": "git",
"url": "git+https://github.com/wechaty/wechaty.js.org.git"
},
"keywords": [
"wechaty",
"document",
"homepage",
"Docusaurus",
"Minimal Mistakes",
"Jekyll"
],
"author": "Huan LI <[email protected]>",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/wechaty/wechaty.js.org/issues"
},
"homepage": "https://github.com/wechaty/wechaty.js.org#readme",
"dependencies": {},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"@chatie/eslint-config": "^0.12.1",
"@chatie/git-scripts": "^0.6.2",
"@chatie/tsconfig": "^0.10.1",
"@docusaurus/core": "^2.0.0-alpha.61",
"@docusaurus/module-type-aliases": "^2.0.0-alpha.61",
"@docusaurus/preset-classic": "^2.0.0-alpha.61",
"@mdx-js/react": "^1.6.16",
"@types/glob": "^7.1.3",
"@types/image-size": "^0.8.0",
"@types/yaml": "^1.9.7",
"clsx": "^1.1.1",
"file-box": "^0.12.8",
"git-scripts": "^0.4.3",
"glob": "^7.1.6",
"image-size": "^0.8.3",
"is-pr": "^1.1.0",
"markdownlint-cli": "^0.23.2",
"probe-image-size": "^5.0.0",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-qr-svg": "^2.2.2",
"tstest": "^0.4.10",
"yaml": "^1.10.0",
"yaml-lint": "^1.2.4"
},
"git": {
"scripts": {
"pre-push": "npx git-scripts-pre-push"
}
}
}