-
-
Notifications
You must be signed in to change notification settings - Fork 208
/
Copy pathpackage.json
153 lines (153 loc) · 4.03 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
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
{
"name": "alex",
"version": "11.0.1",
"description": "Catch insensitive, inconsiderate writing",
"license": "MIT",
"repository": "https://github.com/get-alex/alex",
"bugs": "https://github.com/get-alex/alex/issues",
"funding": {
"url": "https://github.com/sponsors/wooorm"
},
"homepage": "https://alexjs.com",
"keywords": [
"cli-app",
"cli",
"bin",
"alex",
"equal",
"race",
"religion",
"sex",
"orientation",
"identity",
"gender",
"sensitive",
"insensitive",
"neutral",
"writing",
"language",
"english"
],
"author": "Titus Wormer <tituswormer@gmail.com> (http://wooorm.com)",
"contributors": [
"Titus Wormer <tituswormer@gmail.com> (http://wooorm.com)",
"Sindre Sorhus <sindresorhus@gmail.com>",
"Shinnosuke Watanabe <snnskwtnb@gmail.com>",
"Carolyn Stransky <carolynstransky@gmail.com>",
"Riley Martine <riley.martine@protonmail.com>",
"F <f@erbridge.co.uk>",
"Jen Weber <j@jenweber.me>",
"John-David Dalton <john.david.dalton@gmail.com>",
"Lee Mulvey <lmulvey@me.com>",
"Mary McGrath <m.c.mcgrath13@gmail.com>",
"Nick Radford <nick@nicholasradford.com>",
"Ricky <rickhanlonii@gmail.com>",
"Sachin Malhotra <sachinmalhotra1993@gmail.com>",
"Simon Knott <simoknott@gmail.com>",
"Taylor Reece <taylor.reece@gmail.com>",
"Tim <tim@itspugle.com>",
"Vaishnavi Janardhan <vaish.janardhan@gmail.com>",
"Conor Hastings <conor@socialtables.com>",
"Abhinav Gautam <abhinav.nanhey@gmail.com>",
"Alex Gleason <alex@alexgleason.me>",
"Ansel Halliburton <github@anseljh.com>",
"Ben Junya <bjunya@gmail.com>",
"Christian Oliff <christianoliff@yahoo.com>",
"Daan <daan@devign.it>"
],
"type": "module",
"main": "index.js",
"sideEffects": false,
"bin": "cli.js",
"types": "index.d.ts",
"files": [
"index.d.ts",
"index.js",
"filter.d.ts",
"filter.js",
"cli.js"
],
"dependencies": {
"@types/mdast": "^3.0.0",
"@types/nlcst": "^1.0.0",
"meow": "^11.0.0",
"rehype-parse": "^8.0.0",
"rehype-retext": "^3.0.0",
"remark-frontmatter": "^4.0.0",
"remark-gfm": "^3.0.0",
"remark-mdx": "2.0.0",
"remark-message-control": "^7.0.0",
"remark-parse": "^10.0.0",
"remark-retext": "^5.0.0",
"retext-english": "^4.0.0",
"retext-equality": "~6.6.0",
"retext-profanities": "~7.2.0",
"supports-color": "^9.4.0",
"unified": "^10.0.0",
"unified-diff": "^4.0.0",
"unified-engine": "^10.0.0",
"update-notifier": "^6.0.0",
"vfile": "^5.0.0",
"vfile-reporter": "^7.0.0",
"vfile-sort": "^3.0.0"
},
"devDependencies": {
"@types/tape": "^4.0.0",
"@types/update-notifier": "^6.0.0",
"c8": "^7.10.0",
"prettier": "^2.0.0",
"remark-cli": "^11.0.0",
"remark-preset-wooorm": "^9.0.0",
"rimraf": "^3.0.0",
"tape": "^5.0.0",
"type-coverage": "^2.0.0",
"type-fest": "^3.0.0",
"typescript": "^4.0.0",
"vfile-reporter-json": "^3.0.0",
"xo": "^0.54.0"
},
"scripts": {
"build": "rimraf \"test/**/*.d.ts\" \"*.d.ts\" && tsc && type-coverage",
"format": "remark . -qfo && prettier . -w --loglevel warn && xo --fix",
"test-api": "node test/index.js",
"test-coverage": "c8 --check-coverage --branches 100 --functions 100 --lines 100 --statements 100 --reporter lcov npm run test-api",
"test": "npm run build && npm run format && npm run test-coverage"
},
"alex": {
"allow": [
"butt"
]
},
"prettier": {
"tabWidth": 2,
"useTabs": false,
"singleQuote": true,
"bracketSpacing": false,
"semi": false,
"trailingComma": "none"
},
"xo": {
"prettier": true,
"rules": {
"ava/no-import-test-files": "off",
"unicorn/no-array-callback-reference": "off"
}
},
"remarkConfig": {
"plugins": [
"preset-wooorm",
[
"toc",
{
"heading": "contents"
}
]
]
},
"typeCoverage": {
"atLeast": 100,
"detail": true,
"strict": true,
"ignoreCatch": true
}
}