-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1012 Bytes
/
Copy pathpackage.json
File metadata and controls
43 lines (43 loc) · 1012 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
32
33
34
35
36
37
38
39
40
41
42
43
{
"author": {
"name": "Tsur",
"email": "zurisadai.pabon@gmail.com",
"url": "https://www.scripturesos.com/"
},
"name": "node-sword",
"version": "0.0.1-beta",
"description": "Sword Engine(Crosswire) for NodeJS (C++ Addon)",
"keywords": [
"bible",
"node",
"c++",
"sword",
"crosswire"
],
"os": ["linux"],
"cpu": ["x64", "ia32"],
"main": "sword.js",
"repository": {
"type": "git",
"url": "https://github.com/tsur/node-sword.git"
},
"binary": {
"module_name": "sword",
"module_path": "./compiled/{configuration}/{platform}-{arch}/",
"remote_path": "./{module_name}/{configuration}/",
"package_name": "{module_name}-{platform}-{arch}.tar.gz",
"host": ""
},
"dependencies": {
"node-pre-gyp": "0.5.x"
},
"devDependencies": {
"mocha": "1.9.0",
"should": "1.2.2"
},
"bundledDependencies": ["node-pre-gyp"],
"scripts": {
"install": "node-pre-gyp install --fallback-to-build",
"prepublish": "npm ls"
}
}