-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
48 lines (48 loc) · 1.12 KB
/
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
48
{
"name": "@piximi/autotuner",
"version": "1.1.0",
"description": "Bayesian optimization of tensorflow models",
"main": "./dist/src/index.js",
"license": "BSD-3-Clause",
"repository": {
"type": "git",
"url": "https://github.com/piximi/autotuner.git"
},
"bugs": {
"url": "https://github.com/piximi/autotuner/issues"
},
"contributors": [
"Levin Moser",
"Bojan Karlaš"
],
"scripts": {
"build": "tsc -p ./tsconfig.json",
"test": "jest ./tests",
"runExampleAutotuner": "tsc -p ./tsconfig.json && ts-node tests\\runExampleAutotuner.ts"
},
"files": [
"dist"
],
"jest": {
"preset": "ts-jest",
"testEnvironment": "node"
},
"dependencies": {
"@piximi/types": "^0.1.8",
"@tensorflow/tfjs": "^1.2.1",
"@types/deep-equal": "^1.0.1",
"@types/mathjs": "^5.0.1",
"babel-jest": "^24.8.0",
"canvas": "^2.5.0"
},
"devDependencies": {
"@types/jest": "^24.0.17",
"@types/node": "^12.6.8",
"fs": "^0.0.1-security",
"image-js": "^0.21.6",
"jest": "^24.8.0",
"ts-jest": "^24.0.2",
"ts-node": "^8.3.0",
"typescript": "^3.5.3"
}
}