-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
65 lines (65 loc) · 2.56 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
53
54
55
56
57
58
59
60
61
62
63
64
65
{
"name": "renderbugle-webextension",
"description": "web extension for webgl shader debug",
"version": "3.0.13",
"license": "MIT",
"author": "Tuan Kuranes <[email protected]>",
"repository": {
"url": "[email protected]:Kuranes/glslesideWebExtension.git",
"type": "git"
},
"browser": {
"fs": false
},
"keywords": [
"glsl",
"webgl",
"shaders",
"debugger"
],
"scripts": {
"clean": "npm prune && npm install",
"version": "json -I -f webextension/manifest.json -e \"this.version='`echo $npm_package_version`'\"",
"zip:firefox": "cp build/renderbugle.zip build/renderbugle.firefox-v$npm_package_version.xpi",
"zip:chrome": "cp build/renderbugle.zip build/renderbugle.chrome-v$npm_package_version.zip",
"zip": "mkdir build & cd webextension && zip ../build/renderbugle.zip -r -9 -T * -x 'webextension-toolbox*' && cd .. && npm run zip:firefox && npm run zip:chrome && rm build/renderbugle.zip",
"build": "npm run clean && webpack && npm run zip",
"deploy": "npm run build && npm run deploy-chrome && npm run deploy-ffx",
"deploy-ffx": "cd src && webext submit",
"deploy-chrome": "webstore upload --source build/renderbugle.chrome-v$npm_package_version.zip --auto-publish",
"dev": "cd src && web-ext run",
"test": "echo 'no test'"
},
"dependencies": {
"@fortawesome/fontawesome": "^1.1.8",
"@fortawesome/fontawesome-free-brands": "^5.0.13",
"@fortawesome/fontawesome-free-regular": "^5.0.13",
"@fortawesome/fontawesome-free-solid": "^5.0.13",
"@fortawesome/fontawesome-free-webfonts": "^1.0.9",
"codemirror": "^5.40.0",
"copy-webpack-plugin": "^4.5.2",
"css-loader": "^1.0.0",
"file-loader": "^2.0.0",
"fuzzysort": "^1.1.4",
"glslespreprocessor": "0.0.6",
"json": "^9.0.6",
"mini-css-extract-plugin": "^0.4.2",
"split.js": "^1.3.5",
"style-loader": "^0.23.0",
"svg-loader": "^0.0.2",
"to-string-loader": "^1.1.5",
"webpack-auto-inject-version": "^1.1.0"
},
"devDependencies": {
"@wext/shipit": "^0.1.4",
"chrome-webstore-upload-cli": "^1.2.0",
"eslint": "^5.5.0",
"eslint-config-prettier": "^3.0.1",
"eslint-plugin-prettier": "^2.6.2",
"eslint-plugin-private-variables": "^0.1.2",
"prettier": "^1.14.2",
"tape": "^4.9.1",
"web-ext": "^2.9.1",
"webpack-webextension-plugin": "0.1.1"
}
}