https://github.com/cazala/synaptic
Raw File
Tip revision: c1dbc3fd7a48cda63ed56b7d3e4121f20446ef41 authored by Juan Cazala on 14 February 2019, 15:08:19 UTC
ci
Tip revision: c1dbc3f
package.json
{
  "name": "synaptic",
  "version": "1.1.4",
  "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": "MIT",
  "bugs": {
    "url": "https://github.com/cazala/synaptic/issues"
  },
  "homepage": "http://caza.la/synaptic",
  "engines": {
    "node": ">=4"
  }
}
back to top