forked from kloni/node-prolog-swi
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 712 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 712 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
{
"name": "node-swipl",
"version": "0.2.0",
"main": "swipl.js",
"description": "A node.js interface to the SWI-Prolog library",
"keywords": [
"swi",
"prolog",
"swipl",
"logic"
],
"author": {
"name": "Tom Klonikowski",
"email": "klonik_t@informatik.haw-hamburg.de"
},
"license": "LGPL",
"repository": {
"type": "git",
"url": "git@github.com:jansegre/node-swipl.git"
},
"directories": {
"src": "src",
"tests": "tests"
},
"engines": {
"node": ">=0.10.0",
"libswipl": ">=5.10.0"
},
"scripts": {
"install": "node-gyp configure build",
"test": "node tests/a.js"
}
}