-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
52 lines (52 loc) · 1.72 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
{
"name": "web-extension",
"version": "0.3.0",
"description": "The green web foundation",
"main": "index.js",
"directories": {
"doc": "docs"
},
"dependencies": {
"jquery": "^3.5.1",
"tippy.js": "^6.3.1"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^17.1.0",
"@rollup/plugin-node-resolve": "^11.2.0",
"autoprefixer": "^10.1.0",
"nodemon": "^2.0.20",
"postcss": "^8.2.13",
"postcss-cli": "^8.3.1",
"postcss-import": "^14.0.0",
"rollup": "^2.40.0",
"tailwindcss": "^2.0.2",
"web-ext": "^7.5.0",
"webextension-polyfill": "^0.7.0"
},
"scripts": {
"css:dist": "NODE_ENV=production npm run css:build",
"css:build": "postcss -c ../postcss.config.js ./thegreenweb/tailwind.css -o ./thegreenweb/style.css",
"css:watch": "postcss -c postcss.config.js ./thegreenweb/tailwind.css -o ./thegreenweb/style.css --watch",
"firefox:dev": "web-ext run --verbose",
"firefox:dev:ecosia": "web-ext run --verbose --url 'https://www.ecosia.org/search?q=trees' --browser-console",
"firefox:dev:bing": "web-ext run --verbose --url 'http://www.bing.com/search?q=trees' --browser-console",
"firefox:dev:yahoo": "web-ext run --verbose --url 'https://search.yahoo.com/search;?p=trees' --browser-console"
},
"repository": {
"type": "git",
"url": "git+https://github.com/thegreenwebfoundation/web-extension.git"
},
"keywords": [
"browser",
"extensions",
"tgwf",
"sustainability",
"green"
],
"author": "AJ Tetterroo, Chris Adams, and friends",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/thegreenwebfoundation/web-extension/issues"
},
"homepage": "https://github.com/thegreenwebfoundation/web-extension#readme"
}