-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
47 lines (47 loc) · 1003 Bytes
/
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
{
"name": "seolint",
"version": "1.0.0-next.1",
"repository": "lukeed/seolint",
"description": "A robust and configurable SEO linter",
"module": "index.mjs",
"main": "index.js",
"license": "MIT",
"bin": "bin.js",
"author": "Nick Reese (https://elderguide.com)",
"contributors": [
"Luke Edwards <[email protected]> (https://lukeed.com)"
],
"scripts": {
"build": "rollup -c",
"test": "uvu -r tsm -i fixtures test",
"types": "tsc --noEmit"
},
"exports": {
".": {
"import": "./index.mjs",
"require": "./index.js"
},
"./package.json": "./package.json"
},
"files": [
"index.d.ts",
"index.*",
"bin.js"
],
"engines": {
"node": ">=12"
},
"dependencies": {
"kleur": "^4.1.4",
"node-html-parser": "^5.2.0"
},
"keywords": [],
"devDependencies": {
"@types/node": "14.14.10",
"rollup": "2.60.0",
"terser": "5.10.0",
"tsm": "2.1.4",
"typescript": "4.4.4",
"uvu": "0.5.2"
}
}