neuralnetwork
Version:
Rudimentary Neural Network in Typescript
57 lines (56 loc) • 1.3 kB
JSON
{
"name": "neuralnetwork",
"version": "2.0.5",
"description": "Rudimentary Neural Network in Typescript",
"main": "build/lib/index.js",
"files": [
"LICENSE",
"README.md",
"*.js",
"*.json",
"src/**/*.ts",
"build/**/*.js",
".gitignore"
],
"typings": "src/lib/index",
"repository": {
"type": "git",
"url": "https://github.com/EricMok/neuralnetwork.git"
},
"author": "Eric M",
"license": "MIT",
"bugs": {
"url": "https://github.com/EricMok/neuralnetwork/issues"
},
"keywords": [
"neural network",
"backprop",
"typescript",
"brain"
],
"scripts": {
"tsc": "tsc",
"typings": "typings",
"gulp": "gulp",
"build": "gulp build",
"test": "mocha --require source-map-support/register 'build/test/**/*.spec.js'",
"watch": "gulp watch",
"prepublish": "npm run build"
},
"devDependencies": {
"chai": "^3.5.0",
"gulp": "^3.9.1",
"gulp-browserify": "^0.5.0",
"gulp-cached": "^1.1.0",
"gulp-concat": "^2.4.1",
"gulp-debug": "^2.1.2",
"gulp-header": "^1.1.1",
"gulp-rename": "^1.2.0",
"gulp-sourcemaps": "^1.6.0",
"gulp-typescript": "^3.0.1",
"gulp-uglify": "^1.0.1",
"mocha": "^3.1.0",
"typescript": "^2.0.3",
"typings": "^1.4.0"
}
}