Files
keras-js/package.json
T

70 lines
1.6 KiB
JSON

{
"name": "keras-js",
"version": "0.0.1",
"description": "Run trained Keras models in your browser, GPU-powered using WebGL.",
"scripts": {
"lint": "standard src test",
"watch": "webpack src/index.js dist/keras.js --watch --config webpack.dev.config.js",
"build": "npm run lint && webpack --config webpack.prod.config.js",
"server": "http-server . -p 9001"
},
"repository": {
"type": "git",
"url": "git+https://github.com/transcranial/keras-js.git"
},
"keywords": [
"keras",
"deep",
"learning",
"machine",
"learning",
"neural",
"networks",
"javascript",
"webgl",
"gpu"
],
"author": "Leon Chen",
"license": "MIT",
"bugs": {
"url": "https://github.com/transcranial/keras-js/issues"
},
"homepage": "https://github.com/transcranial/keras-js#readme",
"dependencies": {
"cwise": "^1.0.9",
"ndarray": "^1.0.18",
"ndarray-ops": "^1.2.2"
},
"devDependencies": {
"babel-core": "^6.13.2",
"babel-eslint": "^6.1.2",
"babel-loader": "^6.2.5",
"babel-plugin-transform-class-properties": "^6.11.5",
"babel-plugin-transform-object-rest-spread": "^6.8.0",
"babel-preset-es2015": "^6.13.2",
"http-server": "^0.9.0",
"standard": "^8.0.0-beta.5",
"webpack": "^1.13.2"
},
"standard": {
"parser": "babel-eslint",
"globals": [
"KerasJS",
"chai",
"testUtils",
"weblas",
"GPU",
"performance"
]
},
"babel": {
"presets": [
"es2015"
],
"plugins": [
"transform-class-properties",
"transform-object-rest-spread"
]
}
}