This repository has been archived by the owner on Aug 10, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
60 lines (60 loc) · 1.39 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
49
50
51
52
53
54
55
56
57
58
59
60
{
"name": "digit_reader",
"version": "0.0.2",
"description": "A simple machine-learning experiment using ConvNetJS",
"main": "index.js",
"scripts": {
"test": "NODE_ENV=test gulp test",
"start": "node index.js",
"import": "node utils/neuralNetImport",
"export": "node utils/neuralNetExport"
},
"repository": {
"type": "git",
"url": "git+https://github.com/davesag/digit_reader.git"
},
"keywords": [
"machine learning",
"convnet",
"convnetjs",
"numbers",
"number recognition",
"digits",
"digit recognition",
"vision"
],
"author": {
"name": "Dave Sag",
"email": "dave sag at gmail",
"url": "http://cv.davesag.com/"
},
"license": "MIT",
"bugs": "https://github.com/davesag/digit_reader/issues",
"homepage": "https://github.com/davesag/digit_reader#readme",
"config": {
"port": "3000"
},
"devDependencies": {
"chai": "^3.3.0",
"gulp": "^3.9.0",
"gulp-complexity": "^0.3.0",
"gulp-help": "^1.6.1",
"gulp-istanbul": "^0.10.1",
"gulp-jshint": "^1.11.2",
"gulp-mocha": "^2.1.3",
"gulp-uglify": "^1.4.1",
"gulp-util": "^3.0.6",
"sinon": "^1.17.1",
"vinyl-buffer": "^1.0.0",
"vinyl-source-stream": "^1.1.0"
},
"engines": {
"node": "^4.2.x"
},
"dependencies": {
"colors": "^1.1.2",
"convnetjs": "^0.3.0",
"png-js": "^0.1.1",
"redis": "^2.1.0"
}
}