-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
37 lines (37 loc) · 926 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
{
"name": "node-sword-interface",
"version": "1.0.32",
"description": "Javascript (N-API) interface to SWORD library",
"keywords": [
"C++",
"SWORD",
"Bible study",
"Bible",
"Wrapper"
],
"main": "index.js",
"gypfile": true,
"scripts": {
"build": "node-gyp rebuild",
"clean": "node-gyp clean",
"doc": "jsdoc2md index.js > API.md",
"pub": "rm -rf build node_modules sword sword_build test && npm publish ./",
"deploy": "scripts/deploy_local.sh",
"postinstall": "node scripts/postinstall.js"
},
"author": "Tobias Klein",
"license": "GPL-2.0+",
"dependencies": {
"glob": "^8.0.3",
"node-addon-api": "^8.2.2",
"node-html-parser": "^6.1.13"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ezra-bible-app/node-sword-interface.git"
},
"devDependencies": {
"jsdoc-to-markdown": "^8.0.3",
"node-gyp": "^9.1.0"
}
}