forked from unifiedjs/unifiedjs.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
114 lines (114 loc) · 2.97 KB
/
package.json
File metadata and controls
114 lines (114 loc) · 2.97 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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
{
"private": true,
"name": "unified.js.org",
"version": "1.0.0",
"description": "Site for unified",
"license": "MIT",
"keywords": [],
"homepage": "https://unified.js.org",
"repository": "unifiedjs/unifiedjs.github.io",
"bugs": "https://github.com/unifiedjs/unifiedjs.github.io/issues",
"author": "Titus Wormer <tituswormer@gmail.com>",
"contributors": [
"Titus Wormer <tituswormer@gmail.com>"
],
"devDependencies": {
"async": "^2.0.1",
"bail": "^1.0.1",
"browserify": "^16.0.0",
"budo": "^11.0.0",
"cssnano": "^4.0.0",
"dictionary-en-gb": "^2.0.0",
"glob": "^7.0.6",
"hast-util-find-and-replace": "^1.0.0",
"hast-util-from-string": "^1.0.0",
"hast-util-select": "^3.0.0",
"hast-util-to-string": "^1.0.0",
"hastscript": "^5.0.0",
"lowlight": "^1.2.0",
"mkdirp": "^0.5.1",
"pluralize": "^7.0.0",
"prettier": "^1.15.2",
"rehype-autolink-headings": "^2.0.0",
"rehype-cli": "^6.0.0",
"rehype-document": "^2.0.0",
"rehype-highlight": "^2.0.0",
"rehype-parse": "^5.0.0",
"rehype-preset-minify": "^2.0.0",
"rehype-raw": "^3.0.0",
"rehype-retext": "^2.0.0",
"rehype-slug": "^2.0.0",
"rehype-stringify": "^4.0.0",
"remark-cli": "^6.0.0",
"remark-lint-first-heading-level": "^1.0.0",
"remark-lint-no-dead-urls": "^0.3.0",
"remark-parse": "^6.0.0",
"remark-preset-wooorm": "^4.0.0",
"remark-rehype": "^3.0.0",
"remark-retext": "^3.0.0",
"remark-toc": "^5.0.0",
"remark-validate-links": "^7.0.0",
"retext-english": "^3.0.0",
"retext-equality": "^3.0.0",
"retext-passive": "^1.0.0",
"retext-preset-wooorm": "^1.0.0",
"retext-profanities": "^4.0.0",
"retext-readability": "^4.0.0",
"retext-simplify": "^4.1.0",
"retext-spell": "^2.2.0",
"retext-syntax-mentions": "^1.1.2",
"strip-comments": "^1.0.0",
"stylelint": "^9.0.0",
"stylelint-config-standard": "^18.0.0",
"svgo": "^1.0.0",
"tinyify": "^2.4.3",
"to-vfile": "^5.0.0",
"trim": "0.0.1",
"trough": "^1.0.0",
"uglify-js": "^3.0.23",
"unified": "^7.0.0",
"unist-util-visit": "^1.1.0",
"vfile-reporter": "^5.0.0",
"xo": "^0.23.0"
},
"scripts": {
"format": "remark src -qo && rehype src -qf && prettier --write '**/*.js' && xo --fix",
"start": "budo --dir build",
"build": "node script",
"test": "npm run format && npm run build"
},
"dependencies": {
"in-view": "^0.6.0"
},
"prettier": {
"tabWidth": 2,
"useTabs": false,
"singleQuote": true,
"bracketSpacing": false,
"semi": false,
"trailingComma": "none"
},
"xo": {
"prettier": true,
"esnext": false,
"ignores": [
"index.js"
]
},
"stylelint": {
"extends": "stylelint-config-standard",
"rules": {
"no-descending-specificity": null
}
},
"remarkConfig": {
"plugins": [
"./script/markdown/preset-md"
]
},
"rehype": {
"plugins": [
"./script/html/preset"
]
}
}