-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
77 lines (77 loc) · 2.09 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
{
"name": "html-w3c-validator",
"version": "0.0.0-development",
"description": "CLI for validating HTML pages using validator.w3.org.",
"public": true,
"types": "module",
"type": "module",
"author": "Théo LUDWIG <[email protected]>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/theoludwig/html-w3c-validator.git"
},
"bugs": {
"url": "https://github.com/theoludwig/html-w3c-validator/issues"
},
"homepage": "https://github.com/theoludwig/html-w3c-validator#readme",
"keywords": [
"cli",
"html-validator",
"w3c",
"validator.w3.org"
],
"main": "build/index.js",
"bin": "build/index.js",
"files": [
"build",
"./schema/schema.json",
"!**/*.test.js",
"!**/*.map"
],
"publishConfig": {
"access": "public",
"provenance": true
},
"engines": {
"node": ">=16.0.0"
},
"scripts": {
"build": "swc ./src --out-dir ./build --strip-leading-paths --delete-dir-on-start",
"build:typescript": "tsc",
"start": "node --enable-source-maps build/index.js",
"lint:editorconfig": "editorconfig-checker",
"lint:eslint": "eslint . --max-warnings 0 --report-unused-disable-directives --ignore-path .gitignore",
"lint:prettier": "prettier . --check",
"test": "node --enable-source-maps --test",
"release": "semantic-release"
},
"dependencies": {
"chalk": "5.3.0",
"clipanion": "3.2.1",
"log-symbols": "6.0.0",
"ora": "8.1.1",
"read-pkg": "9.0.1",
"table": "6.8.2"
},
"devDependencies": {
"@swc/cli": "0.5.0",
"@swc/core": "1.9.1",
"@tsconfig/strictest": "2.0.5",
"@types/node": "22.9.0",
"@types/sinon": "17.0.3",
"@typescript-eslint/eslint-plugin": "8.13.0",
"@typescript-eslint/parser": "8.13.0",
"editorconfig-checker": "6.0.0",
"eslint": "8.57.1",
"eslint-config-conventions": "16.0.1",
"eslint-plugin-promise": "7.1.0",
"eslint-plugin-unicorn": "55.0.0",
"execa": "9.5.1",
"prettier": "3.3.3",
"semantic-release": "23.1.1",
"serve": "14.2.4",
"sinon": "19.0.2",
"typescript": "5.6.3"
}
}