forked from webdoky/content
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.4 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
{
"dependencies": {
"axios": "0.23.0",
"chalk": "~4.1.2",
"glob": "~7.1.7",
"html-to-text": "~8.0.0",
"markdown-it": "~12.2.0",
"yargs": "^17.3.1"
},
"engines": {
"node": ">= 14"
},
"license": "MIT",
"name": "webdoky-content",
"private": false,
"repository": "https://github.com/webdoky/content",
"scripts": {
"check": "node --experimental-specifier-resolution=node scripts/check.js",
"check-diff": "node --experimental-specifier-resolution=node scripts/check.js --changedOnly",
"check:debug": "DEBUG=true yarn run check",
"postinstall": "docker build . -t lt-custom",
"rebuild": "docker build . --no-cache -t lt-custom",
"fix": "eslint . --fix",
"lint": "eslint ."
},
"type": "module",
"version": "1.0.0",
"devDependencies": {
"eslint": "~7.32.0",
"eslint-config-airbnb-base": "~14.2.1",
"eslint-config-prettier": "~8.3.0",
"eslint-plugin-array-func": "~3.1.7",
"eslint-plugin-editorconfig": "~3.0.2",
"eslint-plugin-eslint-comments": "~3.2.0",
"eslint-plugin-import": "~2.24.2",
"eslint-plugin-jest": "~24.4.0",
"eslint-plugin-node": "~11.1.0",
"eslint-plugin-prettier": "~4.0.0",
"eslint-plugin-promise": "~5.1.0",
"eslint-plugin-security-node": "~1.0.14",
"eslint-plugin-simple-import-sort": "~7.0.0",
"eslint-plugin-unicorn": "~36.0.0",
"jest": "~27.2.0",
"prettier": "~2.4.0"
}
}