forked from BrainJS/brain.js
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
89 lines (89 loc) · 2.24 KB
/
package.json
File metadata and controls
89 lines (89 loc) · 2.24 KB
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
86
87
88
89
{
"author": "Heather Arthur <fayearthur@gmail.com>",
"browser": "./dist/brain.js",
"bugs": {
"url": "https://github.com/brainjs/brain.js/issues"
},
"dependencies": {
"gpu.js": "^1.4.4",
"thaw.js": "^2.0.0"
},
"description": "Neural networks in JavaScript",
"devDependencies": {
"babel-core": "^6.26.3",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-preset-env": "^1.7.0",
"eslint": "^5.0.1",
"eslint-config-airbnb": "^17.0.0",
"eslint-config-prettier": "^2.9.0",
"eslint-plugin-import": "^2.13.0",
"eslint-plugin-jsx-a11y": "^6.0.3",
"eslint-plugin-react": "^7.10.0",
"jest": "^23.2.0",
"parcel-bundler": "^1.9.3",
"prettier": "^1.13.7"
},
"files": [
"dist/"
],
"homepage": "https://github.com/brainjs/brain.js#readme",
"jest": {
"bail": true,
"collectCoverage": false,
"collectCoverageFrom": [
"src/**/*.js"
],
"coverageDirectory": "__coverage__",
"globalSetup": "",
"globals": {},
"setupFiles": [],
"testPathIgnorePatterns": [
"__tests__/.eslintrc.js"
]
},
"keywords": [
"ai",
"artificial-intelligence",
"brain",
"brainjs",
"brain.js",
"feed forward",
"neural network",
"classifier",
"neural",
"network",
"neural-networks",
"machine-learning",
"synapse",
"recurrent",
"long short term memory",
"gated recurrent unit",
"time series",
"time step",
"prediction",
"rnn",
"lstm",
"gru"
],
"license": "MIT",
"main": "./dist/brain.js",
"name": "brain.js",
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/brainjs/brain.js.git"
},
"scripts": {
"build": "npm run dist",
"bundle": "parcel build ./src/index.js --out-dir ./dist --out-file brain.js --no-minify",
"bundle:minified": "parcel build ./src/index.js --out-dir ./dist --out-file brain.min.js",
"dist": "npm run bundle && npm run bundle:minified",
"lint": "eslint --ext .js ./src",
"lint:fix": "eslint --ext .js --fix ./src",
"prettier": "prettier --write ./src/**/*.js",
"test": "jest",
"test:coverage": "jest --coverage",
"test:watch": "jest --watch"
},
"typings": "./src/index.d.ts",
"version": "1.2.2"
}