-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
48 lines (48 loc) · 1.21 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
{
"name": "ml-fnn",
"version": "5.0.0",
"description": "feedforward neural networks library",
"main": "FeedForwardNeuralNetwork.js",
"files": [
"src",
"FeedForwardNeuralNetwork.js"
],
"scripts": {
"compile": "rollup -c",
"eslint": "eslint src",
"eslint-fix": "npm run eslint -- --fix",
"prepublishOnly": "npm run compile",
"test": "npm run test-coverage && npm run eslint",
"test-only": "jest",
"test-coverage": "jest --coverage"
},
"repository": {
"type": "git",
"url": "https://github.com/mljs/feedforward-neural-networks.git"
},
"keywords": [
"neural",
"networks",
"feedforward",
"machine",
"learning"
],
"author": "Jefferson Hernández",
"license": "MIT",
"bugs": {
"url": "https://github.com/mljs/feedforward-neural-networks/issues"
},
"homepage": "https://github.com/mljs/feedforward-neural-networks",
"dependencies": {
"ml-matrix": "^6.1.2"
},
"devDependencies": {
"@babel/plugin-transform-modules-commonjs": "^7.4.4",
"eslint": "^6.0.1",
"eslint-config-cheminfo": "^1.20.1",
"eslint-plugin-import": "^2.18.0",
"eslint-plugin-jest": "^22.7.1",
"jest": "^24.8.0",
"rollup": "^1.16.3"
}
}