forked from TakeScoop/node-glpk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 940 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": "glpk",
"version": "0.0.12",
"license": "MPL-2.0",
"main": "index.js",
"authors": [
"Henri Gourvest <[email protected]>"
],
"repository": {
"type": "git",
"url": "git://github.com/hgourvest/node-glpk.git"
},
"homepage": "http://github.com/hgourvest/node-glpk",
"description": "Node.js native module for GLPK.",
"keywords": [
"glpk"
],
"dependencies": {
"nan": "^2.11.1",
"bindings": "^1.2.1",
"cpp-eventemitter": "TakeScoop/cpp-eventemitter#3d1c42abadc42fec8c9f323c23b142e4236dbaab"
},
"scripts": {
"test": "node-gyp configure --debug; node-gyp build --debug; mocha test/*-test.js",
"configure": "node-gyp configure",
"build": "node-gyp build"
},
"engines": {
"node": ">=0.11.0",
"iojs": "*"
},
"devDependencies": {
"code": "^4.1.0",
"leakage": "^0.4.0",
"mocha": "^3.4.2",
"node-gyp": "^3.6.2",
"temp": "^0.8.3"
}
}