-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
53 lines (53 loc) · 1.53 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
{
"name": "jpeg-asm",
"version": "2.0.0",
"description": "Encoding and decoding images via libjpeg",
"main": "src/bridge/index.js",
"scripts": {
"test": "mocha test",
"build:debug": "scripts/embuild.sh --lib=jpeg --purge --configure --make --debug && ./scripts/embuild.sh --lib=jpegasm --debug",
"build:release": "scripts/embuild.sh --lib=jpeg --purge --configure --make && ./scripts/embuild.sh --lib=jpegasm",
"browser:debug": "gulp",
"browser:release": "NODE_ENV=production gulp",
"release": "npm run build:release && npm run browser:release"
},
"repository": {
"type": "git",
"url": "https://github.com/gchudnov/jpeg-asm.git"
},
"keywords": [
"jpeg",
"image",
"libjpeg",
"decode",
"encode",
"load",
"save"
],
"author": "Grigorii Chudnov <[email protected]> (https://github.com/gchudnov)",
"license": "MIT",
"bugs": {
"url": "https://github.com/gchudnov/jpeg-asm/issues"
},
"homepage": "https://github.com/gchudnov/jpeg-asm",
"devDependencies": {
"@babel/core": "^7.11.6",
"@babel/preset-env": "^7.11.5",
"@babel/register": "^7.11.5",
"ansi-colors": "^4.1.1",
"async": "^3.2.0",
"browserify": "^16.5.2",
"fancy-log": "^1.3.3",
"gulp": "^4.0.2",
"gulp-if": "^3.0.0",
"gulp-notify": "^3.2.0",
"gulp-replace": "^1.0.0",
"gulp-uglify": "^3.0.2",
"mocha": "^8.1.3",
"once": "^1.4.0",
"pretty-hrtime": "^1.0.3",
"should": "^13.2.3",
"vinyl-buffer": "^1.0.1",
"vinyl-source-stream": "^2.0.0"
}
}