-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (44 loc) · 1.07 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
{
"name": "cooparser",
"version": "0.0.10",
"description": "cooparser",
"main": "dist/cooparser.min.js",
"types": "dist/index.d.ts",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "webpack",
"start": "webpack-dev-server --content-base lib/ --open"
},
"license": "MIT",
"contributors": [
"JungWooSong <[email protected]> (https://github.com/bluayer)",
"HyunJinLee <[email protected]> (https://github.com/hyundang)"
],
"keywords": [
"parser",
"og-tags"
],
"repository": {
"type": "git",
"url": "https://github.com/cookie-parking/cooparser.git"
},
"homepage": "https://github.com/cookie-parking/cooparser",
"files": [
"dist",
"lib"
],
"devDependencies": {
"@types/cheerio": "^0.22.24",
"source-map-loader": "^2.0.1",
"ts-loader": "^8.0.17",
"ts-node": "^9.1.1",
"typescript": "^4.2.3",
"webpack": "^5.24.3",
"webpack-cli": "^3.3.11",
"webpack-dev-server": "^3.11.2"
},
"dependencies": {
"axios": "^0.21.1",
"cheerio": "^1.0.0-rc.5"
}
}