-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
35 lines (35 loc) · 978 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
{
"name": "Typescript-deep-neural-network",
"version": "1.0.0",
"description": "A deep neural network written on ES2015/TypeScript: (Class classifying, Iris data learning)",
"scripts": {
"install": "npm i -g tsd && npm i bower -g && npm i -g tsc && tsd install && npm i && bower i",
"start": "tsc && node app.js --harmony"
},
"repository": {
"type": "git",
"url": "git+https://github.com/IPRIT/typescript-deep-neural-network.git"
},
"keywords": [
"neural",
"network",
"deep neural",
"es6",
"es2015",
"typescript"
],
"author": "Alexander Belov",
"license": "MIT",
"bugs": {
"url": "https://github.com/IPRIT/typescript-deep-neural-network/issues"
},
"homepage": "https://github.com/IPRIT/typescript-deep-neural-network#readme",
"dependencies": {
"body-parser": "^1.15.0",
"colors": "^1.1.2",
"express": "^4.13.4",
"jade": "^1.11.0",
"morgan": "^1.7.0",
"seedrandom": "^2.4.2"
}
}