-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 987 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
38
39
40
41
42
43
{
"name": "simple-js-classifier",
"description": "Simple neural network library to classify natural language text",
"version": "0.0.1",
"author": "Stanislav Doskalenko <[email protected]>",
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/StasDoskalenko/simple-js-classifier.git"
},
"scripts": {
"make": "babel src --out-dir dist --source-maps"
},
"main": "./index.js",
"devDependencies": {
"babel-cli": "^6.18.0",
"babel-core": "^6.14.0",
"babel-preset-es2015": "^6.14.0",
"mocha": "^3.0.2"
},
"keywords": [
"ai",
"artificial-intelligence",
"neural network",
"classifier",
"neural",
"network",
"neural-networks",
"machine-learning",
"synapse",
"recurrent",
"rnn",
"lstm",
"gru"
],
"directories": {
"test": "test"
},
"license": "MIT",
"dependencies": {
"babel-plugin-transform-object-rest-spread": "^6.8.0",
"babel-polyfill": "^6.13.0"
}
}