forked from liquidcarrot/carrot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
107 lines (107 loc) · 2.89 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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
{
"name": "@liquid-carrot/carrot",
"version": "0.3.20",
"description": "A Simple Node.js AI Library for Neural Network",
"main": "dist/index.min.js",
"module": "dist/index.min.js",
"unpkg": "dist/carrot.browser.min.js",
"jsdelivr": "dist/carrot.browser.min.js",
"browser": {
"fs": false,
"child_process": false
},
"browserslist": [
"last 1 Chrome version"
],
"scripts": {
"build:src": "concurrently 'node scripts/src.build.node.js' 'node scripts/src.build.browser.js'",
"build:src:webpack": "./node_modules/.bin/webpack",
"deploy:docs": "node theme/deploy-docs.js",
"test": "./node_modules/.bin/nyc --reporter=lcov --reporter=text node ./node_modules/mocha/bin/mocha --recursive test/ --exclude test/unit.js",
"lint": "./node_modules/.bin/eslint --ignore-path .eslintignore .",
"test:debug": "./node_modules/.bin/nyc --reporter=html --reporter=text node ./node_modules/mocha/bin/mocha inspect --recursive test/ --exclude test/unit.js",
"test:forever": "./node_modules/.bin/nodemon ./node_modules/.bin/mocha --reporter spec test/"
},
"repository": {
"type": "git",
"url": "git+https://github.com/liquidcarrot/carrot.git"
},
"keywords": [
"Artificial Intelligence",
"AI",
"Deep Learning",
"DL",
"Machine Learning",
"ML",
"Neural Network",
"Neural Networks",
"NN",
"Convolutional Neural Network",
"Convolutional Neural Networks",
"Convolutional NN",
"Convolutional NNs",
"CNN",
"Artificial Neural Network",
"Artificial Neural Networks",
"Artificial NN",
"Artificial NNs",
"ANN",
"Recurrent Neural Network",
"Recurrent Neural Networks",
"Recurrent NN",
"Recurrent NNs",
"RNN",
"Perceptron",
"Sigmoid",
"TanH",
"ArcTan"
],
"author": "Liquid Carrot <[email protected]> (https://liquidcarrot.io)",
"contributors": [
"Luis Ernesto Carbonell <[email protected]>",
"Christian George Echevarria <[email protected]>"
],
"files": [
"/src",
"/dist"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/liquidcarrot/carrot/issues"
},
"homepage": "https://liquidcarrot.io/",
"dependencies": {
"lodash": "^4.17.15"
},
"devDependencies": {
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"chai-each": "0.0.1",
"chalk": "^2.4.2",
"concurrently": "^5.0.0",
"copy-webpack-plugin": "^5.0.4",
"coveralls": "^3.0.6",
"eslint": "^6.6.0",
"eslint-config-google": "^0.14.0",
"faker": "^4.1.0",
"jsdoc": "^3.6.3",
"mocha": "^6.2.0",
"nodemon": "^1.19.2",
"nyc": "^14.1.1",
"parallel-webpack": "^2.4.0",
"paralleljs": "^0.2.1",
"parcel-bundler": "^1.12.4",
"webpack": "^4.41.0",
"webpack-cli": "^3.3.9"
},
"nyc": {
"include": [
"src/architecture/*.js",
"src/neat.js"
],
"exclude": [
"test",
"util"
]
}
}