-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathpackage.json
35 lines (35 loc) · 1.04 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
{
"name": "tanaguru",
"version": "1.0.0",
"description": "Tanaguru web extension",
"main": "index.js",
"devDependencies": {
"fs-extra": "^9.0.1",
"webextension-polyfill": "^0.7.0",
"node-sass": "^7.0.1"
},
"scripts": {
"watchPanel": "node-sass --watch src/devtools/panel/scss/styles.scss src/devtools/panel/tanaguru-devtools-style.css",
"buildPanel": "node-sass --output-style compressed src/devtools/panel/scss/styles.scss src/devtools/panel/tanaguru-devtools-style.min.css",
"build": "npm run buildPanel && node build",
"i18n": "node i18n",
"stats": "node stats",
"engine": "node engine"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Tanaguru/webextension.git"
},
"author": "tanaguru",
"license": "MIT",
"bugs": {
"url": "https://github.com/Tanaguru/webextension/issues"
},
"homepage": "https://github.com/Tanaguru/webextension#readme",
"dependencies": {
"path": "^0.12.7",
"replace": "^1.2.1",
"yargs": "^16.1.1",
"zip-a-folder": "^1.0.1"
}
}