-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 745 Bytes
/
Copy pathpackage.json
File metadata and controls
31 lines (31 loc) · 745 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
{
"name": "n-api-image-info",
"version": "1.0.0",
"description": "A tutorial for understanding the N-API used in node.js for ABI stable native plugins. Provides information about a supplied image via Native Code.",
"main": "index.js",
"scripts": {
"start": "node index.js",
"test": "node test/index.js",
"electron": "electron electron.js"
},
"engines": {
"node": ">=10"
},
"keywords": [
"N-API",
"Node.js",
"C++",
"ImageMagick",
"Info",
"tutorial"
],
"author": "Atishay Jain <contact@atishay.me>",
"license": "MIT",
"dependencies": {
"body-parser": "^1.18.3",
"electron": "^3.0.4",
"express": "^4.16.4",
"node-addon-api": "^1.5.0",
"node-gyp": "^3.8.0"
}
}