-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 1.08 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
{
"name": "scrapq",
"version": "2.1.2",
"description": "Lightweight Typescript library for scrapping html",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"typings": "./dist/index.d.ts",
"scripts": {
"test": "ts-node node_modules/tape/bin/tape test/**/*.ts",
"dist": "npm run test; npm run build; npm run build:web",
"build": "npm run build:node && npm run build:web && npm run build:dts",
"build:node": "tsc",
"build:web": "webpack --mode=production",
"build:dts": "dts-bundle --name scrapq --main ./dist/index.d.ts"
},
"keywords": [
"typescript",
"scrapping",
"webscrap",
"cheerio"
],
"author": {
"name": "Daniel Derevjanik",
"email": "[email protected]"
},
"license": "MIT",
"devDependencies": {
"@types/tape": "^4.13.0",
"dts-bundle": "^0.7.3",
"tape": "^5.0.1",
"ts-loader": "^8.0.12",
"ts-node": "^9.1.1",
"typescript": "^4.1.3",
"webpack": "^5.11.0",
"webpack-cli": "^4.2.0"
},
"dependencies": {
"@types/cheerio": "^0.22.23",
"cheerio": "^1.0.0-rc.3"
}
}