package.json 1.5 KB
Newer Older
1 2
{
    "name": "@visualdl/mock",
3
    "version": "2.0.0-beta.43",
4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22
    "description": "A platform to visualize the deep learning process and result.",
    "keywords": [
        "visualdl",
        "paddlepaddle",
        "visualization",
        "deep learning"
    ],
    "homepage": "https://github.com/PaddlePaddle/VisualDL",
    "bugs": {
        "url": "https://github.com/PaddlePaddle/VisualDL/issues"
    },
    "license": "Apache-2.0",
    "author": "PeterPanZH <littlepanzh@gmail.com> (https://github.com/PeterPanZH)",
    "contributors": [
        "Niandalu <littlepanzh@gmail.com> (https://github.com/Niandalu)"
    ],
    "repository": {
        "type": "git",
        "url": "https://github.com/PaddlePaddle/VisualDL.git",
P
Peter Pan 已提交
23
        "directory": "frontend/packages/mock"
24 25 26 27 28 29 30 31 32 33 34 35 36 37 38
    },
    "main": "dist/index.js",
    "types": "dist/index.d.ts",
    "files": [
        "dist"
    ],
    "scripts": {
        "build": "tsc",
        "test": "echo \"Error: no test specified\" && exit 0"
    },
    "dependencies": {
        "faker": "4.1.0",
        "isomorphic-unfetch": "3.0.0"
    },
    "devDependencies": {
39
        "@types/express": "4.17.6",
P
Peter Pan 已提交
40
        "@types/faker": "4.1.12",
P
Peter Pan 已提交
41
        "@types/node": "14.0.14",
42
        "typescript": "3.9.5"
43 44 45 46 47 48 49 50 51 52 53 54 55 56 57
    },
    "peerDependencies": {
        "express": "^4.17.1"
    },
    "engines": {
        "node": ">=10",
        "npm": ">=6"
    },
    "publishConfig": {
        "access": "public"
    },
    "husky": {
        "hooks": {
            "pre-commit": "lint-staged"
        }
P
Peter Pan 已提交
58
    }
59
}