-
Notifications
You must be signed in to change notification settings - Fork 57
/
package.json
50 lines (50 loc) · 1.77 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
{
"name": "yt-ad-autoskipper",
"version": "2.2.0",
"description": "An extension that auto skips ads after YouTube provides a skip ad button. It does not block an ad.",
"main": "index.js",
"scripts": {
"copy": "rm -rf build && cp -R src/dist build && cp LICENSE.md build",
"dev": "NODE_ENV=development npm run rollup:watch",
"package": "cd build && zip -r yt-ad-autoskipper-$npm_package_version.zip ./",
"build": "npm run copy && NODE_ENV=production npm run rollup && npm run package && mv build/*.zip .",
"rollup": "rollup --config rollup.config.js",
"rollup:watch": "npm run rollup -- --watch",
"lint": "eslint src",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/squgeim/yt-ad-autoskipper.git"
},
"author": "Shreya Dahal <[email protected]>",
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/squgeim/yt-ad-autoskipper/issues"
},
"homepage": "https://github.com/squgeim/yt-ad-autoskipper#readme",
"devDependencies": {
"@babel/core": "^7.17.8",
"@babel/preset-env": "^7.16.11",
"@babel/preset-typescript": "^7.16.7",
"@rollup/plugin-commonjs": "^21.0.1",
"@rollup/plugin-node-resolve": "^13.0.2",
"@rollup/plugin-replace": "^4.0.0",
"@rollup/plugin-typescript": "^11.1.4",
"@types/chrome": "^0.0.180",
"@types/debounce": "^1.2.1",
"@types/jest": "^27.4.1",
"@typescript-eslint/eslint-plugin": "^5.15.0",
"@typescript-eslint/parser": "^5.15.0",
"babel-jest": "^27.5.1",
"eslint": "^8.11.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"jest": "^27.5.1",
"prettier": "^2.6.0",
"rollup": "^2.53.2",
"rollup-plugin-copy": "^3.4.0",
"tslib": "^2.6.2",
"typescript": "^5.2.2"
}
}