-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
85 lines (85 loc) · 2.04 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
{
"name": "js-mind",
"version": "1.0.0",
"description": "Deep Learning Library Written in ES6+.",
"main": "dist/index.js",
"directories": {
"test": "spec"
},
"engines": {
"node": ">=0.12"
},
"scripts": {
"test": "mocha --compilers js:espower-babel/guess spec/**/*.spec.js",
"build": "babel src -d dist",
"bmp": "cc-bmp",
"bmp-p": "cc-bmp -p",
"bmp-m": "cc-bmp -m",
"bmp-j": "cc-bmp -j",
"circle": "cc-generate-yml",
"post-dependencies": "echo post-dependencies",
"pre-release": "gulp babel:all",
"post-release": "echo post-release",
"gh-pages": "esdoc -c esdoc.json"
},
"repository": {
"type": "git",
"url": "git+https://github.com/yujiosaka/js-mind.git"
},
"keywords": [
"es6",
"neural",
"network",
"convolutional",
"deep",
"machine",
"learning"
],
"author": "Yuji Isobe",
"contributors": [
{
"name": "Shin Suzuki",
"email": "[email protected]"
}
],
"license": "MIT",
"bugs": {
"url": "https://github.com/yujiosaka/js-mind/issues"
},
"homepage": "https://github.com/yujiosaka/js-mind#readme",
"dependencies": {
"bluebird": "^3.4.1",
"linear-algebra": "git://github.com/yujiosaka/linear-algebra#for_neural_networks_and_deep_learning",
"lodash": "^4.3.0"
},
"devDependencies": {
"babel-cli": "^6.6.5",
"babel-preset-es2015": "^6.5.0",
"babel-preset-stage-0": "^6.5.0",
"esdoc": "^0.4.4",
"esdoc-es7-plugin": "0.0.3",
"espower-babel": "^4.0.1",
"gulp": "^3.9.1",
"gulp-babel": "^6.1.2",
"gulp-plumber": "^1.1.0",
"gulp-util": "^3.0.7",
"mocha": "^3.0.1",
"node-circleci-autorelease": "^2.2.0",
"power-assert": "^1.2.0"
},
"node-circleci-autorelease": {
"machine": {
"node": {
"version": "4.4.2"
}
},
"config": {
"git-user-name": "CircleCI",
"git-user-email": "[email protected]",
"version-prefix": "v",
"create-branch": false,
"create-gh-pages": true,
"gh-pages-dir": "doc"
}
}
}