-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
74 lines (74 loc) · 2.16 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
{
"name": "@liquid-carrot/nn",
"version": "1.0.16",
"description": "Neural Networks & Deep Learning in JavaScript",
"main": "dist/nn.commonjs2.min.js",
"module": "dist/nn.commonjs2.min.js",
"browser": "dist/nn.window.min.js",
"unpkg": "dist/nn.umd2.min.js",
"jsdelivr": "dist/nn.umd2.min.js",
"scripts": {
"test": "npm run test:node && npm run test:browser",
"test:node": "mocha test/node.js",
"test:browser": "npm run build:test && live-server test/",
"build": "npm run build:src && npm run doc",
"build:src": "webpack",
"build:test": "webpack test/node.js -o test/browser.js",
"doc": "npm run doc:markdown && npm run doc:html",
"doc:html": "jsdoc -c jsdoc.conf.json",
"doc:markdown": "jsdoc2md src/*.js > DOCUMENTATION.md"
},
"repository": {
"type": "git",
"url": "git+https://github.com/liquidcarrot/nn.git"
},
"keywords": [
"neural-networks",
"nn",
"browser",
"node",
"nodejs"
],
"author": "Liquid Carrot <people@liquidcarrot.io> (https://liquidcarrot.io)",
"contributors": [
"Luis Carbonell <lulucarbonell@protonmail.com> (https://luiscarbonell.com)"
],
"license": "MIT",
"private": false,
"bugs": {
"url": "https://github.com/liquidcarrot/nn/issues"
},
"homepage": "https://liquidcarrot.io/nn",
"devDependencies": {
"@liquid-carrot/data.cjyvyspsy0000l2m932iv07k1": "^1.0.1",
"@liquid-carrot/data.pima-indians-diabetes": "^1.0.1",
"@tensorflow/tfjs": "^1.2.7",
"@tensorflow/tfjs-node": "^1.2.7",
"benchmark": "^2.1.4",
"benchmark.js": "^2.0.0",
"browserify": "^16.3.0",
"chai": "^4.2.0",
"csv-parse": "^4.4.5",
"csvtojson": "^2.0.10",
"expr-eval": "^2.0.1",
"faker": "^4.1.0",
"fast-csv": "^3.4.0",
"jsdoc": "^3.6.3",
"jsdoc-to-markdown": "^5.0.0",
"live-server": "^1.2.1",
"lodash": "^4.17.15",
"mathjs": "^6.2.1",
"mocha": "^6.2.0",
"neataptic": "^1.4.7",
"nodemon": "^1.19.1",
"parallel-webpack": "^2.4.0",
"puppeteer": "^1.18.1",
"synaptic": "^1.1.4",
"webpack": "^4.38.0",
"webpack-cli": "^3.3.6"
},
"dependencies": {
"highland": "^2.13.5",
"vis-network": "^5.4.1"
}
}