mirror of
https://github.com/wassname/keras-js.git
synced 2026-09-23 13:20:45 +08:00
71 lines
1.6 KiB
JSON
71 lines
1.6 KiB
JSON
{
|
|
"name": "keras-js",
|
|
"version": "0.0.1",
|
|
"description": "Run trained Keras models in JavaScript. Works in the browser or Node.js.",
|
|
"main": "lib/index.js",
|
|
"scripts": {
|
|
"lint": "standard src test",
|
|
"test": "ava --verbose",
|
|
"check": "npm run lint && npm run test",
|
|
"compile": "rimraf lib && babel src -d lib",
|
|
"build": "echo \"No build step currently.\"",
|
|
"prepublish": "npm run check && npm run compile && npm run build"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/transcranial/keras-js.git"
|
|
},
|
|
"keywords": [
|
|
"Keras",
|
|
"deep",
|
|
"learning",
|
|
"machine",
|
|
"learning",
|
|
"neural",
|
|
"networks",
|
|
"javascript"
|
|
],
|
|
"author": "Leon Chen",
|
|
"license": "MIT",
|
|
"bugs": {
|
|
"url": "https://github.com/transcranial/keras-js/issues"
|
|
},
|
|
"homepage": "https://github.com/transcranial/keras-js#readme",
|
|
"dependencies": {
|
|
"vectorious": "^4.3.2"
|
|
},
|
|
"devDependencies": {
|
|
"ava": "^0.16.0",
|
|
"babel-cli": "^6.11.4",
|
|
"babel-core": "^6.13.2",
|
|
"babel-eslint": "^6.1.2",
|
|
"babel-plugin-transform-class-properties": "^6.11.5",
|
|
"babel-preset-es2015": "^6.13.2",
|
|
"babel-register": "^6.11.6",
|
|
"rimraf": "^2.5.4",
|
|
"standard": "^8.0.0-beta.5"
|
|
},
|
|
"standard": {
|
|
"parser": "babel-eslint"
|
|
},
|
|
"babel": {
|
|
"presets": [
|
|
"es2015"
|
|
],
|
|
"plugins": [
|
|
"transform-class-properties"
|
|
]
|
|
},
|
|
"ava": {
|
|
"files": [
|
|
"tests/**/*.js"
|
|
],
|
|
"concurrency": 4,
|
|
"failFast": true,
|
|
"require": [
|
|
"babel-register"
|
|
],
|
|
"babel": "inherit"
|
|
}
|
|
}
|