forked from jansegre/node-swipl
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
47 lines (47 loc) · 874 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
40
41
42
43
44
45
46
47
{
"name": "swipl",
"version": "1.0.6",
"main": "index.js",
"description": "A node.js interface to the SWI-Prolog.",
"keywords": [
"swi",
"prolog",
"swipl",
"logic"
],
"license": "LGPL-3.0",
"repository": {
"type": "git",
"url": "[email protected]:rla/node-swipl.git"
},
"directories": {
"src": "src",
"tests": "tests"
},
"engines": {
"node": ">= 7"
},
"scripts": {
"postinstall": "node scripts/store_plbase.js",
"test": "node-gyp configure build && mocha tests/bridge.js tests/simple.js tests/consult.js"
},
"dependencies": {
"nan": "^2.4.0"
},
"devDependencies": {
"mocha": "^3.2.0",
"node-gyp": "^6.0.0"
},
"files": [
"src",
"lib",
"tests",
"scripts",
"binding.gyp",
"index.js",
"LICENSE.txt",
"package.json",
"README.md",
"AUTHORS"
]
}