-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 875 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": "refprop",
"version": "1.0.0",
"description": "refprop interface for node.js",
"main": "node-refprop.node",
"repository": {
"type": "git",
"url": "https://github.com/EvilDrW/node-refprop/refprop.git"
},
"scripts": {
"test": "mocha",
"build": "node-gyp build",
"build:dev": "node-gyp build --debug",
"rebuild": "node-gyp rebuild",
"rebuild:dev": "node-gyp rebuild --debug",
"clean": "node-gyp clean",
"start": "node-gyp clean && node-gyp configure && node-gyp build && npm test"
},
"license": "MIT",
"binary": {
"module_name": "node-refprop",
"module_path": "./build/Release/"
},
"gypfile": true,
"devDependencies": {
"mocha": "^2.2.1",
"mathjs": ">= 3.17.0",
"should": "^5.2.0"
},
"os": [
"win32"
],
"cpu": [
"x64"
],
"dependencies": {
"nan": "^2.14.0"
}
}