-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) · 1.92 KB
/
package.json
File metadata and controls
75 lines (75 loc) · 1.92 KB
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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
{
"dependencies": {
"child-process-utilities": "^0.0.10",
"cli-argument-helper": "^0.0.8",
"cmake-js": "^7.4.0",
"glob": "^10.3.10",
"nan": "^2.24.0",
"textstreamjs": "^0.0.4"
},
"engines": {
"node": "^24"
},
"scripts": {
"test": "npx tsc -b test --force && npx ava test/test.js",
"prepublishOnly": "npx tsc -b scripts --force && npm run cli -- --configure && npm run test && NODE_ENV=development npm run test",
"cli": "node scripts",
"postinstall": "npm run cli -- --configure"
},
"main": "./app/index.js",
"typings": "./app/index.d.ts",
"license": "MIT",
"files": [
"LICENSE",
"CMakeLists.txt",
"deps",
"scripts/**/*.{js,map,ts,d.ts}",
"core/**/*.{js,map,ts,d.ts}",
"core/**/*.{cpp,h,c,txt}",
"app/**/*.{js,map,ts,d.ts}",
"src/**/*.{cpp,h,txt}"
],
"repository": {
"type": "git",
"url": "https://github.com/native-bindings/imagemagick.git"
},
"keywords": [
"imagemagick",
"imagemagick6",
"magick",
"native",
"binding",
"bindings",
"node",
"nodejs",
"image",
"processing",
"manipulation",
"convert",
"resize",
"graphics",
"c++",
"addon",
"magick++"
],
"author": {
"name": "Victor Queiroz",
"email": "victorcqueirozg@gmail.com",
"url": "https://github.com/VictorQueiroz"
},
"devDependencies": {
"@types/node": "^24.10.4",
"ava": "^6.4.1",
"c8": "^10.1.3",
"eslint": "^8.57.1",
"tsx": "^4.21.0",
"typescript": "^5.9.3"
},
"ava": {
"failFast": true
},
"type": "commonjs",
"description": "ImageMagick 6 bindings for Node.js",
"name": "@native-bindings/imagemagick6",
"version": "2.0.1"
}