-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
67 lines (67 loc) · 1.97 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
{
"name": "@mojojs/dom",
"version": "2.1.5",
"description": "A fast and minimalistic HTML/XML DOM parser with CSS selectors",
"keywords": [
"mojojs",
"dom",
"html",
"xml",
"css",
"scraping"
],
"author": "Sebastian Riedel <[email protected]>",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/mojolicious/dom.js.git"
},
"bugs": {
"url": "https://github.com/mojolicious/dom.js/issues"
},
"homepage": "https://mojojs.org",
"scripts": {
"build": "npx tsc --build ./",
"build:clean": "npm run clean && npm run build",
"build:coverage": "npm run build && npm run coverage",
"build:lint": "npm run build && npm run lint",
"build:test": "npm run build && npm test",
"build:watch": "npm run build -- --watch",
"clean": "rm -rf tsconfig.tsbuildinfo lib",
"coverage": "c8 tap --disable-coverage --allow-empty-coverage test/*.js",
"coverage:ci": "c8 --reporter lcovonly tap --disable-coverage --allow-empty-coverage test/*.js",
"lint": "eslint \"test/*.js\" \"src/**/*.ts\" \"src/*.ts\"",
"lint:fix": "npm run lint -- --fix",
"prepublishOnly": "npm run build",
"publish:minor": "npm version minor && npm publish",
"publish:patch": "npm version patch && npm publish",
"test": "tap --disable-coverage --allow-empty-coverage test/*.js"
},
"exports": "./lib/dom.js",
"types": "./lib/dom.d.ts",
"type": "module",
"files": [
"lib/"
],
"devDependencies": {
"@types/node": "^22.5.1",
"@types/tap": "^15.0.3",
"@typescript-eslint/eslint-plugin": "^6.0.0",
"c8": "^8.0.0",
"eslint": "^8.1.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-import": "^2.23.4",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^5.0.0",
"parse5": "^7.0.0",
"prettier": "^3.0.0",
"tap": "^21.0.0",
"typescript": "^5.0.2"
},
"engines": {
"node": ">= 18"
},
"dependencies": {
"@mojojs/util": "^1.4.0"
}
}