-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 980 Bytes
/
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
{
"name": "text-fragment-scraper",
"version": "0.1.0",
"description": "Scrape highlighted text using text fragments",
"author": {
"name": "Soham Sen",
"email": "contact@sohamsen.me",
"url": "https://sohamsen.me"
},
"keywords": [
"url",
"scraper",
"text-fragment"
],
"homepage": "https://github.com/Yureien/text-fragment-scraper",
"license": "MIT",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"/dist"
],
"scripts": {
"build": "tsc",
"test": "mocha --reporter spec --require ts-node/register src/**/*.test.ts",
"lint": "eslint ."
},
"dependencies": {
"puppeteer": "^15.4.0"
},
"devDependencies": {
"@types/chai": "^4.3.1",
"@types/mocha": "^9.1.1",
"@typescript-eslint/eslint-plugin": "^5.39.0",
"@typescript-eslint/parser": "^5.39.0",
"chai": "^4.3.6",
"eslint": "^8.25.0",
"mocha": "^10.0.0",
"ts-node": "^10.9.1",
"typescript": "^4.8.4"
}
}