-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 827 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 827 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
{
"name": "daft-parser",
"version": "1.0.2",
"description": "Parse daft.ie listings",
"main": "dist/app.js",
"scripts": {
"test": "jest",
"build": "tsc",
"start": "npm run build && node --experimental-specifier-resolution=node dist/app.js",
"test:coverage": "jest --coverage",
"test:badges": "npm run test:coverage && jest-coverage-badges"
},
"author": "Paul de Koning",
"license": "ISC",
"dependencies": {
"node-fetch-commonjs": "^3.2.4",
"node-html-parser": "^6.1.4"
},
"devDependencies": {
"jest-coverage-badges": "^1.1.2",
"@types/jest": "^29.2.5",
"jest": "^29.3.1",
"ts-jest": "^29.0.3",
"typescript": "^4.9.4"
},
"repository": {
"type": "git",
"url": "git+https://github.com/PauldeKoning/daft-parser"
},
"files": [
"dist/*"
]
}