-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
55 lines (55 loc) · 1.3 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
50
51
52
53
54
55
{
"name": "yle-teletext-scraper",
"version": "1.0.2",
"description": "Retrieve teletext pages from Finnish Broadcasting Company.",
"main": "dist/scraper.js",
"author": "Rauli Laine <rauli.laine@iki.fi>",
"license": "MIT",
"repository": {
"type": "git",
"url": "git@github.com/RauliL/yle-teletext-scraper"
},
"keywords": [
"yle",
"yleisradio",
"teletext",
"scraper"
],
"module": "dist/index.mjs",
"browser": "dist/index.iife.js",
"types": "index.d.ts",
"bin": {
"yle-teletext": "bin/yle-teletext"
},
"scripts": {
"build": "rollup -c",
"watch": "rollup -c -w",
"clean": "rimraf './dist'",
"prebuild": "$npm_execpath run clean",
"prepack": "env NODE_END=production $npm_execpath run build"
},
"files": [
"LICENSE",
"README.md",
"index.d.ts",
"bin/yle-teletext",
"dist/index.js",
"dist/index.mjs",
"dist/index.iife.js"
],
"dependencies": {
"cross-fetch": "^4.0.0",
"entities": "^5.0.0",
"lodash.get": "^4.4.2",
"strip": "^3.0.0"
},
"devDependencies": {
"@babel/core": "^7.0.0",
"@rollup/plugin-babel": "^6.0.4",
"@rollup/plugin-commonjs": "^28.0.0",
"@rollup/plugin-node-resolve": "^15.3.0",
"@rollup/plugin-terser": "^0.4.4",
"rimraf": "^6.0.1",
"rollup": "^4.24.0"
}
}