This repository has been archived by the owner on Sep 22, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
63 lines (63 loc) · 2.85 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
{
"name": "2ch-helper",
"version": "1.2.1",
"description": "A browser extension which facilitates interaction with the imageboard 2ch.hk.",
"scripts": {
"watch:chromium:dev": "webpack --watch --config webpack.config.dev --env.platform=chromium --env.dontRemove=true",
"watch:firefox:dev": "webpack --watch --config webpack.config.dev --env.platform=firefox --env.dontRemove=true",
"build:chromium:prod": "webpack --config webpack.config.prod --env.platform=chromium",
"build:chromium:dev": "webpack --config webpack.config.dev --env.platform=chromium",
"build:firefox:prod": "webpack --config webpack.config.prod --env.platform=firefox",
"build:firefox:dev": "webpack --config webpack.config.dev --env.platform=firefox",
"zip:chromium": "bestzip ./dist/chromium.zip ./dist/chromium/*",
"zip:firefox": "bestzip ./dist/firefox.zip ./dist/firefox/*",
"clean": "rimraf ./dist",
"clean:chromium": "rimraf ./dist/chromium ./dist/chromium.zip",
"clean:firefox": "rimraf ./dist/firefox ./dist/firefox.zip",
"build": "npm run build:prod",
"build:prod": "npm run build:chromium:prod && npm run build:firefox:prod",
"build:dev": "npm run build:chromium:dev && npm run build:firefox:dev",
"zip": "npm run zip:chromium && npm run zip:firefox",
"build-zip": "npm run build-zip:chromium:prod && npm run build-zip:firefox:prod",
"build-zip:chromium:prod": "npm run build:chromium:prod && npm run zip:chromium",
"build-zip:chromium:dev": "npm run build:chromium:dev && npm run zip:chromium",
"build-zip:firefox:prod": "npm run build:firefox:prod && npm run zip:firefox",
"build-zip:firefox:dev": "npm run build:firefox:dev && npm run zip:firefox"
},
"author": {
"name": "Sergey Kuznetsov",
"url": "https://github.com/Amaimersion"
},
"repository": {
"type": "git",
"url": "https://github.com/Amaimersion/2ch-helper"
},
"bugs": {
"url": "https://github.com/Amaimersion/2ch-helper/issues"
},
"license": "MIT",
"private": true,
"dependencies": {
"exif-js": "^2.3.0"
},
"devDependencies": {
"@types/chrome": "0.0.63",
"awesome-typescript-loader": "^5.2.1",
"bestzip": "^1.1.6",
"copy-webpack-plugin": "^4.6.0",
"css-loader": "^0.28.11",
"extract-text-webpack-plugin": "^4.0.0-beta.0",
"html-webpack-plugin": "^3.2.0",
"node-sass": "^4.11.0",
"pug": "^2.0.3",
"pug-loader": "^2.4.0",
"remove-files-webpack-plugin": "^1.0.0",
"rimraf": "^2.6.3",
"sass-loader": "^6.0.7",
"typescript": "^2.9.2",
"validate-html-links-webpack-plugin": "^1.0.0",
"webpack": "^4.15.1",
"webpack-cli": "^2.1.5",
"webpack-merge": "^4.1.3"
}
}