-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
45 lines (45 loc) · 1.14 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
{
"name": "mozjpeg-js",
"version": "3.3.1-beta.1",
"description": "Implementation of MozJPEG in pure JavaScript, using Emscripten",
"main": "dist/mozjpeg.js",
"jsnext:main": "dist/mozjpeg.es6.js",
"module": "dist/mozjpeg.es6.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "npm run build:cjpeg && npm run build:rollup && npm run build:uglify",
"build:cjpeg": "./build-js.sh",
"build:rollup": "rollup -c rollup.config.js",
"build:uglify": "uglifyjs dist/mozjpeg.js -o dist/mozjpeg.min.js -m -c"
},
"repository": {
"type": "git",
"url": "git+https://github.com/as-com/mozjpeg-js.git"
},
"keywords": [
"jpeg",
"mozjpeg",
"emscripten",
"image",
"img",
"jpg",
"compress",
"emscripten"
],
"author": "Andrew Sun",
"license": "BSD-3-Clause",
"bugs": {
"url": "https://github.com/as-com/mozjpeg-js/issues"
},
"homepage": "https://github.com/as-com/mozjpeg-js#readme",
"files": [
"index.js",
"lib",
"dist"
],
"devDependencies": {
"rollup": "^0.57.1",
"rollup-plugin-commonjs": "^9.1.0",
"uglify-js": "^3.3.18"
}
}