-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 883 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 883 Bytes
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
{
"name": "@canvas/image",
"version": "2.0.0",
"repository": "node-gfx/image",
"license": "MIT",
"files": [
"index.d.ts",
"index.js",
"browser.js"
],
"browser": "browser.js",
"scripts": {
"build": "browserify test.js -o test-bundle.js",
"test": "standard && nyc --check-coverage --branches=100 --lines=100 node test"
},
"dependencies": {
"@canvas/image-data": "^1.0.0",
"@cwasm/jpeg-turbo": "^0.1.1",
"@cwasm/lodepng": "^0.1.2",
"@cwasm/nsbmp": "^0.1.0",
"@cwasm/nsgif": "^0.1.0",
"@cwasm/webp": "^0.1.3",
"decode-ico": "^0.4.1",
"fast-base64-decode": "^1.0.0",
"fast-base64-encode": "^1.0.0",
"fast-base64-length": "^1.0.0",
"simple-get": "^4.0.1"
},
"devDependencies": {
"browserify": "^16.5.0",
"nyc": "^14.1.1",
"standard": "^14.3.1"
},
"engines": {
"node": ">=10"
}
}