-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
95 lines (95 loc) · 2.14 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
{
"private": true,
"name": "beep-boop-beta",
"version": "0.0.0",
"description": "Automaton for unified",
"license": "MIT",
"keywords": [],
"repository": "unifiedjs/beep-boop-beta",
"bugs": "https://github.com/unifiedjs/beep-boop-beta/issues",
"author": "Titus Wormer <[email protected]> (https://wooorm.com)",
"contributors": [
"Titus Wormer <[email protected]> (https://wooorm.com)"
],
"type": "module",
"main": "index.cjs",
"files": [
"lib/",
"index.cjs"
],
"devDependencies": {
"@actions/core": "^1.0.0",
"@actions/github": "^5.0.0",
"@vercel/ncc": "^0.28.0",
"js-yaml": "^4.0.0",
"mdast-util-to-string": "^3.0.0",
"minimatch": "^3.0.0",
"ms": "^2.0.0",
"node-fetch": "^2.0.0",
"prettier": "^2.0.0",
"remark-cli": "^9.0.0",
"remark-frontmatter": "^3.0.0",
"remark-gfm": "^1.0.0",
"remark-parse": "^9.0.0",
"remark-preset-wooorm": "^8.0.0",
"remark-stringify": "^9.0.0",
"similarity": "^1.0.0",
"stringify-entities": "^4.0.0",
"unified": "^9.0.0",
"unist-builder": "^3.0.0",
"unist-util-is": "^5.0.0",
"unist-util-visit": "^3.0.0",
"vfile": "^4.0.0",
"vfile-matter": "^2.0.0",
"xo": "^0.39.0"
},
"scripts": {
"format": "remark . -qfo && prettier . --write && xo --fix",
"build": "ncc build main.js -o . --license license && mv index.js index.cjs",
"test": "npm run format && npm run build"
},
"prettier": {
"tabWidth": 2,
"useTabs": false,
"singleQuote": true,
"bracketSpacing": false,
"semi": false,
"trailingComma": "none"
},
"xo": {
"prettier": true,
"rules": {
"complexity": "off",
"no-await-in-loop": "off"
},
"ignores": [
"index.cjs"
]
},
"remarkConfig": {
"plugins": [
"frontmatter",
"preset-wooorm",
[
"lint-first-heading-level",
false
],
[
"lint-maximum-line-length",
false
],
[
"lint-no-html",
false
],
[
"lint-rule-style",
false
],
[
"lint-no-missing-blank-lines",
false
]
]
}
}