-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.14 KB
/
Copy pathpackage.json
File metadata and controls
52 lines (52 loc) · 1.14 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
{
"author": "Jens Oliver Meiert",
"bin": {
"obsohtml": "bin/obsohtml.js"
},
"dependencies": {
"commander": "^15.0.0"
},
"description": "HTML checker for obsolete and proprietary elements and attributes",
"devDependencies": {
"@eslint/js": "^10.0.0",
"eslint": "^10.6.0",
"globals": "^17.6.0",
"typescript": "^7.0.2"
},
"exports": {
".": {
"types": "./src/index.d.ts",
"default": "./src/index.js"
}
},
"files": [
"bin/obsohtml.js",
"src",
"!src/index.test.ts"
],
"funding": "https://github.com/j9t/obsohtml?sponsor=1",
"homepage": "https://github.com/j9t/obsohtml",
"keywords": [
"html",
"qa",
"qc",
"semantics"
],
"license": "MIT",
"main": "src/index.js",
"name": "obsohtml",
"repository": {
"type": "git",
"url": "git+https://github.com/j9t/obsohtml.git"
},
"scripts": {
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"start": "node ./bin/obsohtml.js",
"test": "npm run test:types && node --test bin/obsohtml.test.js",
"test:types": "tsc"
},
"type": "module",
"types": "src/index.d.ts",
"version": "1.10.1"
}