forked from wechaty/docusaurus
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
100 lines (100 loc) · 3.25 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
91
92
93
94
95
96
97
98
99
100
{
"name": "wechaty.js.org",
"version": "0.8.331",
"description": "Wechaty Official Website for News, Blogs, Contributor Profiles, and Documentations",
"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": "cd docusaurus && docusaurus swizzle",
"docusaurus:deploy": "cd docusaurus && docusaurus deploy",
"docusaurus:serve": "cd docusaurus && 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",
"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.3",
"@chatie/git-scripts": "^0.6.2",
"@chatie/tsconfig": "^0.14.1",
"@docusaurus/core": "^2.0.0-alpha.72",
"@docusaurus/module-type-aliases": "^2.0.0-alpha.72",
"@docusaurus/preset-classic": "^2.0.0-alpha.72",
"@ionic-internal/docusaurus-plugin-tag-manager": "github:ionic-team/docusaurus-plugin-tag-manager",
"@mdx-js/react": "^1.6.22",
"@types/glob": "^7.1.3",
"@types/lodash": "^4.14.168",
"@types/marked": "^2.0.1",
"@types/node-fetch": "^2.5.10",
"@types/probe-image-size": "^7.0.0",
"@types/yaml-front-matter": "^4.1.0",
"abort-controller": "^3.0.0",
"clsx": "^1.1.1",
"file-box": "^0.16.8",
"git-scripts": "^0.4.3",
"glob": "^7.1.6",
"image-size": "^0.9.7",
"is-pr": "^2.0.0",
"lodash": "^4.17.21",
"markdownlint-cli": "^0.27.1",
"marked": "^2.0.1",
"node-fetch": "^2.6.1",
"probe-image-size": "^7.0.1",
"react": "^17.0.2",
"react-copy-to-clipboard": "^5.0.3",
"react-dom": "^17.0.2",
"react-qr-svg": "^2.3.0",
"tstest": "^0.4.10",
"uuid": "^8.3.2",
"yaml": "^1.10.2",
"yaml-front-matter": "^4.1.1",
"yaml-lint": "^1.2.4"
},
"git": {
"scripts": {
"pre-push": "npx git-scripts-pre-push"
}
}
}