-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 loc) · 1.45 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
{
"name": "pure-js-html-parser",
"version": "1.0.3",
"description": "Implement an HTML parser in pure JS(TS) without relying on any libraries.",
"keywords": [
"pure-js",
"html-parser"
],
"main": "./lib/index.es.js",
"types": "./lib/index.d.ts",
"exports": {
".": {
"types": "./lib/index.d.ts",
"import": "./lib/index.es.js",
"require": "./lib/index.js"
}
},
"scripts": {
"test": "jest",
"lint": "eslint src/**",
"build": "tsc",
"build2": "rollup -c"
},
"files": [
"lib"
],
"repository": {
"type": "git",
"url": "git+https://github.com/rni-l/pure-js-html-parser.git"
},
"author": "rni-l",
"license": "ISC",
"bugs": {
"url": "https://github.com/rni-l/pure-js-html-parser/issues"
},
"homepage": "https://github.com/rni-l/pure-js-html-parser#readme",
"devDependencies": {
"@babel/core": "^7.23.9",
"@babel/preset-env": "^7.23.9",
"@babel/preset-typescript": "^7.23.3",
"@jest/globals": "^29.7.0",
"@rollup/plugin-commonjs": "^25.0.7",
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/plugin-typescript": "^11.1.6",
"@types/jest": "^29.5.11",
"@typescript-eslint/eslint-plugin": "^6.20.0",
"@typescript-eslint/parser": "^6.20.0",
"babel-jest": "^29.7.0",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"jest": "^29.7.0",
"prettier": "^3.2.4",
"rollup": "^4.12.0"
}
}