forked from stefanw/bibbot
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.76 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.76 KB
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
56
57
{
"name": "bibbot",
"version": "0.33.0",
"description": "BibBot removes paywalls of German media sites",
"devDependencies": {
"@babel/core": "^7.20.12",
"@babel/preset-env": "^7.20.2",
"@rollup/plugin-commonjs": "^24.0.0",
"@rollup/plugin-node-resolve": "^15.0.1",
"@rollup/plugin-typescript": "^10.0.1",
"@types/jest": "^29.2.5",
"@types/jest-environment-puppeteer": "^5.0.3",
"@types/puppeteer": "^5.4.7",
"@types/webextension-polyfill": "^0.9.2",
"@typescript-eslint/eslint-plugin": "^5.48.0",
"@typescript-eslint/parser": "^5.48.0",
"babel-jest": "^29.3.1",
"eslint": "^8.31.0",
"eslint-config-standard": "^17.0.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^6.1.1",
"jest": "^29.3.1",
"jest-puppeteer": "^6.2.0",
"node-fetch": "^3.3.0",
"pre-commit": "^1.2.2",
"puppeteer": "^19.4.1",
"puppeteer-core": "^19.4.1",
"rollup": "^3.9.1",
"ts-jest": "^29.0.3",
"typescript": "^4.9.4",
"webextension-polyfill": "^0.10.0"
},
"scripts": {
"start": "rollup --bundleConfigAsCjs -c -w",
"build": "rollup --bundleConfigAsCjs -c",
"lint": "eslint src tests",
"check-types": "tsc --noemit",
"test": "jest --runInBand",
"version": "gsed -i '4s/\"version\": \".*\",/\"version\": \"'\"$(jq -r .version package.json)\"'\",/' manifest.json && git add manifest.json"
},
"pre-commit": [
"lint",
"check-types",
"build"
],
"repository": {
"type": "git",
"url": "git+https://github.com/stefanw/bibbot.git"
},
"author": "Stefan Wehrmeyer",
"license": "GPL-3.0-or-later",
"bugs": {
"url": "https://github.com/stefanw/bibbot/issues"
},
"homepage": "https://stefanw.github.io/bibbot/"
}