-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
42 lines (42 loc) · 1.07 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
{
"name": "ag-images",
"description": "Library for loading and saving PNG files",
"version": "2.3.1",
"main": "index.js",
"browser": "browser.js",
"keywords": [],
"homepage": "https://github.com/Agamnentzar/ag-images",
"repository": "git://github.com/Agamnentzar/ag-images.git",
"scripts": {
"test": "mocha test/*.spec.js --timeout 30000",
"build": "node-gyp rebuild -j 8",
"install": "node-pre-gyp install --fallback-to-build"
},
"binary": {
"module_name": "ag_images",
"module_path": "build/Release",
"host": "https://github.com/Agamnentzar/ag-images/releases/download/",
"remote_path": "v{version}",
"package_name": "{module_name}-v{version}-{node_abi}-{platform}-{libc}-{arch}.tar.gz"
},
"files": [
"binding.gyp",
"deps/",
"src/",
"index.d.ts"
],
"types": "index.d.ts",
"dependencies": {
"@types/node": "20.9.4",
"nan": "2.18.0",
"node-pre-gyp": "^0.15.0"
},
"devDependencies": {
"assert-rejects": "^1.0.0",
"mocha": "^8.1.3"
},
"engines": {
"node": ">=6"
},
"license": "MIT"
}