-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
33 lines (33 loc) · 1.2 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
{
"name": "@codeselfstudy/codeselfstudy_browser_extension",
"version": "0.9.1",
"description": "A browser extension for Code Self Study",
"main": "background_script.js",
"scripts": {
"start": "npx web-ext run -i \"tags\"",
"serve:firefox": "npx web-ext run -i \"tags\"",
"serve:chromium": "npx web-ext run -t chromium -i \"tags\"",
"test": "echo \"Error: no test specified\" && exit 1",
"prettier:check": "npx prettier --check \"**/*.{js,css,html}\"",
"prettier:fix": "npx prettier --write \"**/*.{js,css,html}\"",
"build": "make clean && npx web-ext build -i \"tags\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/codeselfstudy/codeselfstudy_browser_extension.git"
},
"keywords": [
"codeselfstudy"
],
"author": "J. Cohen",
"license": "MIT",
"bugs": {
"url": "https://github.com/codeselfstudy/codeselfstudy_browser_extension/issues"
},
"homepage": "https://github.com/codeselfstudy/codeselfstudy_browser_extension#readme",
"devDependencies": {
"prettier": "^2.3.2",
"web-ext": "^6.3.0",
"webextension-polyfill": "^0.8.0"
}
}