-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
37 lines (37 loc) · 1.48 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
{
"name": "ecoindex-browser-plugin",
"version": "2.7.0",
"description": "This is the source code of the Ecoindex browser plugin. This simple plugin allows you to check the Ecoindex of any website you visit.",
"scripts": {
"manifest:tmp": "node bin/temp-manifest.mjs",
"manifest:update": "node bin/update-manifest.mjs",
"build:chrome": "node ./bin/build-extension.mjs chrome",
"build:firefox": "node ./bin/build-extension.mjs firefox",
"build:all": "npm run build:chrome && npm run build:firefox",
"lint": "npm run manifest:tmp && npx eslint src && web-ext lint",
"lint:fix": "npm run manifest:tmp && npx eslint src --fix && web-ext lint",
"start": "npm run manifest:tmp && web-ext run --firefox-preview",
"start:dev": "npm run manifest:tmp && web-ext run --devtools --firefox-preview",
"preVersion": "npm run manifest:tmp && npm run lint",
"version": "npm run manifest:update"
},
"repository": {
"type": "git",
"url": "git+https://github.com/vvatelot/ecoindex-chrome-plugin.git"
},
"author": "Vincent Vatelot <vincent.vatelot@ik.me>",
"license": "Creative commons CC-By-NC-ND",
"bugs": {
"url": "https://github.com/vvatelot/ecoindex-chrome-plugin/issues"
},
"homepage": "https://github.com/vvatelot/ecoindex-chrome-plugin",
"devDependencies": {
"eslint": "^8.30.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.26.0"
},
"dependencies": {
"fs-extra": "^11.1.0",
"web-ext": "^7.4.0"
}
}