-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
55 lines (55 loc) · 1.57 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
{
"name": "recurrent-js",
"version": "1.7.4",
"description": "Various amazingly simple to build and train neural network architectures. The library is an object-oriented neural network approach (baked with Typescript), containing stateless and stateful neural network architectures.",
"keywords": [
"ai",
"artificial intelligence",
"recurrent",
"stateless",
"stateful",
"recurrent neural network",
"rnn",
"deep learning",
"dnn",
"bayesian network",
"bnn",
"neural network",
"artificial neural network",
"deep neural network",
"feedforward neural network",
"lstm",
"long short-term memory",
"expression graphs",
"automatic differentiation",
"backprop",
"backpropagation"
],
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"scripts": {
"prepare": "npm run test",
"test": "./node_modules/.bin/jasmine --config=jasmine.json",
"pretest": "npm run build",
"build": "./node_modules/.bin/tsc -p .",
"prebuild": "./node_modules/.bin/rimraf dist",
"posttest": "./node_modules/.bin/rimraf dist/*.spec.* dist/*.doubles.*"
},
"author": "Menno van Rahden",
"homepage": "https://github.com/mvrahden/recurrent-js#readme",
"bugs": {
"url": "https://github.com/mvrahden/recurrent-js/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mvrahden/recurrent-js.git"
},
"license": "MIT",
"devDependencies": {
"@types/jasmine": "^2.8.8",
"jasmine": "^2.99.0",
"rimraf": "^2.6.2",
"typescript": "^2.9.2"
},
"dependencies": {}
}