-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
35 lines (35 loc) · 1.02 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
{
"name": "pgpyml",
"version": "0.3.1",
"description": "Deploy your python machine learning models in your database",
"main": "index.js",
"directories": {
"doc": "docs",
"example": "examples"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"minify-css": "./node_modules/.bin/css-minify -d ./docs/resources -o ./docs/resources",
"publish": "mkdir -p ./dist/ && cp -r ./docs/* ./dist/ && ./node_modules/.bin/css-minify -d ./docs/resources -o ./dist/resources/",
"publish-pages": "./node_modules/.bin/gh-pages -d dist/ -d dist/"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Minoro/pgpyml.git"
},
"keywords": [
"postgres",
"postgresql",
"machine-learning"
],
"author": "Andre Minoro Fusioka",
"license": "PostgreSQL License",
"bugs": {
"url": "https://github.com/Minoro/pgpyml/issues"
},
"homepage": "https://github.com/Minoro/pgpyml#readme",
"devDependencies": {
"css-minify": "^2.0.0",
"gh-pages": "^3.2.3"
}
}