package.json 1.4 KB
Newer Older
1 2
{
    "name": "@visualdl/mock",
P
Peter Pan 已提交
3
    "version": "2.2.0-1",
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
    "type": "module",
    "main": "index.js",
    "module": "index.js",
    "types": "index.d.ts",
29
    "files": [
30 31 32 33 34 35 36
        "index.js",
        "index.d.ts",
        "middleware.js",
        "middleware.d.ts",
        "data",
        "assets",
        "utils"
37 38
    ],
    "scripts": {
39
        "build": "echo \"Do not need to build\" && exit 0",
40
        "test": "echo \"Error: no test specified\" && exit 0"
41 42
    },
    "dependencies": {
43 44
        "fetch-mock": "9.11.0",
        "mime-types": "2.1.31"
45 46
    },
    "devDependencies": {
47
        "express": "4.17.1"
48 49
    },
    "engines": {
50
        "node": ">=14",
51 52 53 54
        "npm": ">=6"
    },
    "publishConfig": {
        "access": "public"
P
Peter Pan 已提交
55
    }
56
}