-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
42 lines (42 loc) · 1.52 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
{
"name": "github-repo-size",
"version": "1.7.0",
"description": "Firefox addon to add repository size to their Github homepage",
"main": "src/index.js",
"scripts": {
"build": "npm-run-all build:sources build:package",
"build:package": "web-ext build -s ./dist",
"build:sources": "npm-run-all --parallel build:main build:options copyAssets copyIcons",
"build:main": "parcel build src/index.ts --public-url ./",
"build:options": "parcel build src/options.ts --public-url ./",
"watch": "npm-run-all --parallel watch:main watch:options copyAssets copyIcons",
"watch:main": "parcel watch src/index.ts --public-url ./",
"watch:options": "parcel watch src/options.ts --public-url ./",
"copyAssets": "cpy manifest.json LICENSE.md README.md package.json tsconfig.json yarn.lock src/options.html dist/",
"copyIcons": "cpy --parents icon/icon.svg dist/",
"webext:run": "web-ext run -s ./dist",
"webext:lint": "web-ext lint -s ./dist"
},
"author": "Matthieu Harlé",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/Shywim/github-repo-size.git"
},
"devDependencies": {
"@types/firefox-webext-browser": "^82.0.1",
"cpy-cli": "^3.1.1",
"npm-run-all": "^4.1.5",
"parcel-bundler": "^1.12.5",
"prettier": "^2.4.1",
"rimraf": "^3.0.2",
"typescript": "^4.4.3",
"web-ext": "^6.4.0"
},
"dependencies": {
"dom-loaded": "^3.0.0"
},
"browserslist": [
"last 1 Firefox version"
]
}