UNPKG

synaptic

Version:

architecture-free neural network library

65 lines 2.06 kB
{ "name": "synaptic", "version": "1.1.1", "description": "architecture-free neural network library", "main": "./dist/synaptic", "scripts": { "test": "npm run test:mocha:src", "test:dist": "npm run build && npm run test:mocha:dist && npm run test:karma:browsers", "test:mocha:src": "mocha test/_inject-src test", "test:mocha:dist": "mocha test/_inject-dist test", "test:karma:browsers": "karma start --single-run --browsers Chrome,Firefox,SafariPrivate", "test:karma:chrome": "karma start --single-run --browsers Chrome", "test:karma:phantomjs": "karma start --single-run --browsers PhantomJS", "test:travis": "npm run test:mocha:src && npm run build && npm run test:mocha:dist", "build": "webpack --config webpack.config.js" }, "prepush": [ "test", "build" ], "devDependencies": { "babel-core": "^6.26.0", "babel-loader": "^7.1.2", "babel-plugin-transform-class-properties": "^6.24.1", "babel-plugin-transform-object-rest-spread": "^6.26.0", "babel-preset-env": "^1.6.0", "babel-preset-es2015": "^6.24.1", "babel-register": "^6.26.0", "chai": "^3.5.0", "chai-stats": "^0.3.0", "karma": "^1.1.2", "karma-chrome-launcher": "^1.0.1", "karma-firefox-launcher": "^1.0.0", "karma-mocha": "^1.1.1", "karma-phantomjs-launcher": "^1.0.1", "karma-safari-launcher": "^1.0.0", "karma-webpack": "^2.0.4", "mocha": "^2.2.4", "pre-push": "^0.1.1", "webpack": "^3.5.5" }, "repository": { "type": "git", "url": "https://github.com/cazala/synaptic.git" }, "keywords": [ "neural network", "machine learning", "long short term memory", "perceptron", "architecture free" ], "author": "Juan Cazala <juancazala@gmail.com> (http://juancazala.com/)", "license": { "type": "MIT", "url": "https://github.com/cazala/synaptic/blob/master/LICENSE" }, "bugs": { "url": "https://github.com/cazala/synaptic/issues" }, "homepage": "http://caza.la/synaptic", "engines": { "node": ">=4" } }