package.json 1.6 KB
Newer Older
1 2
{
    "name": "@visualdl/mock",
P
Peter Pan 已提交
3
    "version": "2.0.0-beta.50",
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
    },
    "main": "dist/index.js",
    "types": "dist/index.d.ts",
    "files": [
        "dist"
    ],
    "scripts": {
P
Peter Pan 已提交
31
        "build": "rimraf dist && tsc && cpy assets dist/ --parents",
32
        "test": "echo \"Error: no test specified\" && exit 0; #"
33 34 35
    },
    "dependencies": {
        "faker": "4.1.0",
P
Peter Pan 已提交
36 37
        "isomorphic-unfetch": "3.0.0",
        "mime-types": "2.1.27"
38 39
    },
    "devDependencies": {
P
Peter Pan 已提交
40
        "@types/express": "4.17.7",
P
Peter Pan 已提交
41
        "@types/faker": "4.1.12",
P
Peter Pan 已提交
42
        "@types/node": "14.0.27",
P
Peter Pan 已提交
43 44
        "cpy-cli": "3.1.1",
        "rimraf": "3.0.2",
P
Peter Pan 已提交
45
        "typescript": "3.9.7"
46 47 48 49 50 51 52 53 54 55 56 57 58 59 60
    },
    "peerDependencies": {
        "express": "^4.17.1"
    },
    "engines": {
        "node": ">=10",
        "npm": ">=6"
    },
    "publishConfig": {
        "access": "public"
    },
    "husky": {
        "hooks": {
            "pre-commit": "lint-staged"
        }
P
Peter Pan 已提交
61
    }
62
}