-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (44 loc) · 960 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
{
"name": "hyperopt",
"version": "0.7.9",
"description": "Global optimization algorithms for Node.js",
"keywords": [
"hyperparameter",
"optimization",
"dlib"
],
"license": "Apache-2.0",
"main": "./index.js",
"types": "./index.d.ts",
"author": {
"email": "gh@rayglover.net",
"name": "Ray Glover"
},
"repository": {
"url": "https://github.com/rayglover-ibm/hyperopt",
"type": "git"
},
"engines": {
"node": ">=12.17.0"
},
"scripts": {
"install": "prebuild-install -r napi || cmake-js compile --prefer-clang",
"test": "teenytest 'tests/*.test.js'",
"prebuild": "prebuild -r napi --all --verbose --backend cmake-js"
},
"dependencies": {
"bindings": "^1.5",
"cmake-js": "^6.2",
"node-addon-api": "^4.2",
"prebuild-install": "^6.1"
},
"devDependencies": {
"prebuild": "^11.0.0",
"teenytest": "^5.2"
},
"binary": {
"napi_versions": [
6
]
}
}