-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.4 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
{
"name": "page-meta-scraper",
"description": "A page metadata scraper",
"repository": {
"type": "git",
"url": "https://github.com/olerichter00/page-meta-scraper"
},
"homepage": "https://github.com/olerichter00/page-meta-scraper.git",
"keywords": [
"meta",
"page",
"metadata",
"scraper"
],
"author": "Ole Richter <[email protected]>",
"version": "0.1.3",
"main": "dist/index.js",
"umd:main": "dist/page-meta-scraper.umd.production.js",
"module": "dist/page-meta-scraper.esm.js",
"typings": "dist/index.d.ts",
"license": "MIT",
"scripts": {
"start": "tsdx watch",
"build": "tsdx build",
"test": "tsdx test --env=jsdom",
"test:watch": "tsdx test --watch --env=jsdom",
"version:alpha": "npm version prerelease --preid=alpha",
"publish:alpha": "npm publish --tag alpha",
"prepublishOnly": "tsdx build"
},
"devDependencies": {
"@babel/cli": "^7.12.8",
"@babel/core": "^7.12.9",
"@babel/plugin-transform-runtime": "^7.12.1",
"@babel/plugin-transform-typescript": "^7.12.1",
"@babel/preset-env": "^7.12.7",
"@babel/preset-typescript": "^7.12.7",
"@types/cheerio": "^0.22.22",
"babel-jest": "^26.6.3",
"babel-plugin-transform-class-properties": "^6.24.1",
"jest": "^26.6.3",
"ts-jest": "^26.4.4",
"tsdx": "^0.14.1",
"typescript": "^4.1.2"
},
"dependencies": {
"cheerio": "^1.0.0-rc.3"
}
}