UNPKG

@liquid-carrot/carrot

Version:

A Simple Node.js AI Library for Neural Network

109 lines (108 loc) 3.06 kB
{ "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": { "coverage": "./node_modules/.bin/nyc report --reporter=text-lcov | coveralls && rm -rf ./src-cov", "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=html --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 <people@liquidcarrot.io> (https://liquidcarrot.io)", "contributors": [ "Luis Ernesto Carbonell <luis@liquidcarrot.io>", "Christian George Echevarria <chris@liquidcarrot.io>" ], "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" ] } }