-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
45 lines (45 loc) · 1.18 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
{
"name": "@emmetio/html-matcher",
"version": "1.3.0",
"description": "Minimalistic and ultra-fast HTML parser & matcher",
"type": "module",
"main": "./dist/html-matcher.js",
"types": "./dist/index.d.ts",
"exports": {
"import": "./dist/html-matcher.js",
"require": "./dist/html-matcher.cjs",
"types": "./dist/index.d.ts"
},
"dependencies": {
"@emmetio/scanner": "^1.0.0"
},
"devDependencies": {
"@rollup/plugin-node-resolve": "^15.3.0",
"@rollup/plugin-typescript": "^12.1.1",
"@types/node": "^22.10.1",
"rollup": "^4.28.1",
"tslib": "^2.8.1",
"tsx": "^4.19.2",
"typescript": "^5.7.2"
},
"scripts": {
"test": "tsx --test ./test/*.ts",
"build": "rollup -c",
"clean": "rm -rf ./dist",
"prepare2": "npm test && npm run clean && npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/emmetio/html-matcher.git"
},
"keywords": [],
"author": "Sergey Chikuyonok <serge.che@gmail.com>",
"license": "ISC",
"bugs": {
"url": "https://github.com/emmetio/html-matcher/issues"
},
"homepage": "https://github.com/emmetio/html-matcher#readme",
"directories": {
"test": "test"
}
}