-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 917 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 917 Bytes
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
{
"name": "html-monparser",
"version": "0.0.1",
"description": "HTML parser implemented using the parser library \"monpar\"",
"repository": {
"type": "git",
"url": "https://github.com/S3B4S/html-monparser"
},
"main": "dist/cjs/index.js",
"module": "dist/mjs/index.js",
"scripts": {
"start:dev": "nodemon",
"test": "jest",
"lint": "eslint . --ext .ts",
"build": "rm -r dist && tsc -p tsconfig.cjs.json && tsc -p tsconfig.mjs.json && ./fix-up.sh"
},
"author": "S3B4S",
"license": "ISC",
"dependencies": {
"monpar": "^1.0.3"
},
"devDependencies": {
"@types/jest": "^27.0.1",
"@types/node": "^16.7.10",
"@typescript-eslint/eslint-plugin": "^4.30.0",
"@typescript-eslint/parser": "^4.30.0",
"eslint": "^7.32.0",
"jest": "^27.1.0",
"nodemon": "^2.0.12",
"ts-jest": "^27.0.5",
"ts-node": "^10.2.1",
"typescript": "^4.4.2"
}
}