-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
37 lines (37 loc) · 971 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
{
"name": "sia",
"version": "1.0.0",
"description": "Electron based tool for running neural network experiments",
"main": "main.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"fetch-mnist": "bin/fetch-mnist.js",
"fetch-omniglot": "bin/fetch-omniglot.js",
"fetch-whitened-patches": "bin/fetch-whitened-patches.js",
"start": "electron . "
},
"repository": {
"type": "git",
"url": "git+https://github.com/syntropy-ai/sia.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/syntropy-ai/sia/issues"
},
"homepage": "https://github.com/syntropy-ai/sia#readme",
"devDependencies": {
"electron": "^1.4.10",
"minimist": "^1.2.0",
"request": "^2.79.0",
"unzipper": "^0.8.8"
},
"bin": {
"fetch-mnist": "bin/fetch-mnist.js",
"fetch-omniglot": "bin/fetch-omniglot.js"
},
"dependencies": {
"lodash": "^4.17.4",
"pngjs": "^3.0.1"
}
}