-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
60 lines (60 loc) · 1.59 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
{
"name": "inkjet",
"version": "3.0.0",
"description": "JPEG-image decoding, encoding & EXIF reading library for browser and node.js",
"main": "build/index.js",
"scripts": {
"test": "mocha test --require @babel/register",
"bundle:test": "gulp bundleTest",
"build": "./node_modules/.bin/babel src --out-dir build",
"browser": "gulp",
"browser:release": "NODE_ENV=production gulp",
"coverage": "nyc --reporter=lcov --reporter=html npm run test"
},
"repository": {
"type": "git",
"url": "https://github.com/gchudnov/inkjet.git"
},
"keywords": [
"jpeg",
"exif",
"image",
"photo",
"decode",
"encode",
"metadata"
],
"author": "Grigorii Chudnov <g.chudnov@gmail.com> (https://github.com/gchudnov)",
"license": "MIT",
"bugs": {
"url": "https://github.com/gchudnov/inkjet/issues"
},
"homepage": "https://github.com/gchudnov/inkjet",
"dependencies": {
"imageinfo": "^1.0.4",
"webworkify": "^1.5.0"
},
"devDependencies": {
"@babel/cli": "^7.11.6",
"@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",
"babel-plugin-add-module-exports": "^1.0.4",
"babelify": "^10.0.0",
"browserify": "^16.5.2",
"fancy-log": "^1.3.3",
"gulp": "^4.0.2",
"gulp-header": "^2.0.9",
"gulp-if": "^3.0.0",
"gulp-replace": "^1.0.0",
"gulp-uglify": "^3.0.2",
"mocha": "^8.1.3",
"nyc": "^15.1.0",
"once": "^1.4.0",
"should": "^13.2.3",
"vinyl-buffer": "^1.0.1",
"vinyl-source-stream": "^2.0.0"
}
}