-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
56 lines (56 loc) · 1.48 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
{
"name": "neuralnetjs",
"version": "1.0.0",
"description": "A simple straightforward Neural Network library written in Javascript",
"main": "index.js",
"scripts": {
"start:iris": "ts-node ./src/examples/iris/index.ts",
"docs:build": "typedoc --out ./docs ./src/NeuralNet.ts --name NeuralNetJS --module commonjs --target ES5 --tsconfig ./tsconfig.json --readme ./README.md",
"docs:serve": "cd ./docs && http-server -p 5555",
"snyk-protect": "snyk protect",
"prepublish": "npm run snyk-protect"
},
"repository": {
"type": "git",
"url": "git+https://github.com/vickylance/NeuralNetJS.git"
},
"keywords": [
"Neural",
"Net",
"NN",
"AI",
"ML",
"DL",
"Artificial",
"Intelligence",
"Deep",
"Learning"
],
"author": "Vignesh S",
"license": "MIT",
"bugs": {
"url": "https://github.com/vickylance/NeuralNetJS/issues"
},
"homepage": "https://github.com/vickylance/NeuralNetJS#readme",
"dependencies": {
"@types/lodash": "^4.14.149",
"@types/mathjs": "^6.0.4",
"@types/node": "^13.7.0",
"colors": "^1.4.0",
"csvtojson": "^2.0.10",
"lodash": "^4.17.15",
"mathjs": "^6.6.0",
"snyk": "^1.290.1",
"uuid": "^3.4.0"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^2.18.0",
"@typescript-eslint/parser": "^2.18.0",
"eslint": "^6.8.0",
"http-server": "^0.12.1",
"ts-node": "^8.6.2",
"typedoc": "^0.16.9",
"typescript": "^3.7.5"
},
"snyk": true
}