forked from wmakeev/darkroom-xmp-tools
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 952 Bytes
/
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
{
"name": "@wmakeev/darkroom-xmp-tools",
"version": "2.0.4",
"description": "Retrieve and update darkroom operations params stored in sidecar xmp files",
"main": "index.js",
"types": "index.d.ts",
"gypfile": true,
"keywords": [
"darktable",
"darkroom",
"lighttable",
"lightroom",
"sidecar",
"xmp",
"tools",
"RAW",
"automation"
],
"scripts": {
"test": "node ./__tests__",
"postinstall": "npm run test",
"prepublish": "npm run rebuild && npm run test",
"rebuild": "node-gyp rebuild",
"rebuild:dev": "node-gyp rebuild --debug",
"build": "node-gyp build",
"build:dev": "node-gyp build --debug",
"build_and_test": "npm run build && npm run test",
"clean": "node-gyp clean"
},
"author": "Vitaliy V. Makeev",
"dependencies": {
"bindings": "^1.5.0",
"node-addon-api": "~1.5.0"
},
"license": "ISC",
"devDependencies": {
"node-gyp": "^3.8.0"
}
}