-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 1.29 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
{
"name": "alpha-jpeg",
"version": "0.2.0",
"license": "MIT",
"description": "Create JPEGs with transparency.",
"main": "src/utils/AlphaJPEG.js",
"private": false,
"repository": {
"type": "git",
"url": "https://github.com/craigathook/alpha-jpeg.git"
},
"author": "Craig Albert <me@craigalbert.com> (http://www.craigalbert.com)",
"keywords": [
"jpeg",
"compression",
"png",
"alpha",
"transparency",
"transparent"
],
"scripts": {
"build": "npm run build:development",
"build:dev": "webpack --config webpack/webpack.config.js",
"build:prod": "webpack --config webpack/webpack.config.js --env.production",
"watch": "npm run build:development -- -w",
"start": "http-server dist/ -c-1",
"dev": "webpack-dev-server --config webpack/webpack.config.js"
},
"devDependencies": {
"@babel/core": "^7.10.2",
"@babel/preset-env": "^7.10.2",
"babel-loader": "^8.1.0",
"clean-webpack-plugin": "^3.0.0",
"copy-webpack-plugin": "^6.1.0",
"file-loader": "^6.0.0",
"http-server": "^0.12.3",
"uglifyjs-webpack-plugin": "^2.2.0",
"webpack": "^4.43.0",
"webpack-bundle-analyzer": "^3.8.0",
"webpack-cli": "^3.3.11",
"webpack-dev-server": "^3.11.0",
"webpack-merge": "^4.2.2"
},
"dependencies": {
}
}