-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
36 lines (36 loc) · 1.09 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
{
"name": "Slicon",
"version": "0.2.0",
"description": "A browser extension for Slack",
"main": "index.js",
"author": "tomoki1207",
"license": "MIT",
"private": true,
"scripts": {
"predev": "webpack --config webpack.firefox.config.js",
"dev": "run-p watch:*",
"watch:js": "webpack -w --config webpack.firefox.config.js",
"watch:ff": "web-ext run -s build-firefox/",
"build": "run-s build:js build:ff",
"build:js": "NODE_ENV=production webpack --config webpack.firefox.config.js",
"build:ff": "web-ext build -s build-firefox/ --overwrite-dest",
"build-chrome": "NODE_ENV=production webpack --config webpack.chrome.config.js"
},
"devDependencies": {
"@babel/core": "^7.4.3",
"@babel/preset-env": "^7.4.3",
"babel-loader": "^8.0.5",
"clean-webpack-plugin": "^2.0.2",
"copy-webpack-plugin": "^5.0.2",
"eslint": "^5.16.0",
"npm-run-all": "^4.1.5",
"prettier": "^1.17.0",
"web-ext": "^3.0.0",
"webpack": "^4.30.0",
"webpack-cli": "^3.3.0"
},
"dependencies": {
"blueimp-md5": "^2.10.0",
"identicon.js": "^2.3.3"
}
}