-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 2.01 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
{
"name": "tapas-rss",
"version": "1.1.1",
"description": "A webextension to add an rss button to tapas.io webcomics pages",
"main": "",
"scripts": {
"build": "npm run build:firefox && npm run build:chrome",
"build:firefox": "npm run manifest:firefox && web-ext build -a web-ext-artifacts/firefox",
"build:chrome": "npm run manifest:chrome && web-ext build -a web-ext-artifacts/chrome",
"dev": "npm run manifest:firefox && web-ext run -f ${FIREFOX:-firefox}",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"manifest": "npm run manifest:firefox && npm run manifest:chrome",
"manifest:firefox": "node scripts/merge_manifests.js manifests/common.json manifests/firefox.json && cp manifest.json manifest-firefox.json",
"manifest:chrome": "node scripts/merge_manifests.js manifests/common.json manifests/chrome.json && cp manifest.json manifest-chrome.json",
"test": "npm run test:unit && npm run test:cypress",
"test:unit": "mocha tests/unit/**/*.spec.js",
"test:cypress": "npm run manifest:firefox && cypress run -b ${BROWSER:-firefox}",
"cypress:open": "npm run manifest && cypress open"
},
"repository": {
"type": "git",
"url": "git+https://github.com/victal/tapas-rss.git"
},
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/victal/tapas-rss/issues"
},
"homepage": "https://github.com/victal/tapas-rss#readme",
"devDependencies": {
"@victal/cypress-extensions-plugin": "^0.1.7",
"axios": "^1.7.2",
"chai": "^4.4.1",
"cypress": "^13.12.0",
"eslint": "^8.57.0",
"eslint-config-standard": "^17.1.0",
"eslint-plugin-cypress": "^3.3.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-mocha": "^10.4.3",
"eslint-plugin-n": "^16.6.2",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^6.2.0",
"eslint-watch": "^8.0.0",
"husky": "^9.0.11",
"mocha": "^10.5.2",
"rss-parser": "^3.13.0",
"web-ext": "^8.2.0"
},
"dependencies": {
"browserify-versionify": "^1.0.6"
}
}