package.json 1.2 KB
Newer Older
zhuangtongfa's avatar
init  
zhuangtongfa 已提交
1
{
B
binaryify 已提交
2
    "name": "NeteaseCloudMusicApi",
3
    "version": "3.32.3",
B
binaryify 已提交
4 5 6 7 8 9 10 11 12 13 14 15
    "description": "网易云音乐 NodeJS 版 API",
    "scripts": {
        "start": "node app.js",
        "test": "mocha -r intelli-espower-loader -t 20000 app.test.js --exit",
        "lint-fix": "eslint --fix --ext .js app.js module/ util/ test/ "
    },
    "keywords": [
        "网易云音乐",
        "网易云",
        "音乐",
        "网易云音乐nodejs"
    ],
B
binaryify 已提交
16
    "main": "main.js",
B
binaryify 已提交
17 18 19 20 21
    "husky": {
        "hooks": {
            "pre-commit": "lint-staged"
        }
    },
B
improve  
binaryify 已提交
22 23 24
    "engines": {
        "node": ">=12"
    },
B
binaryify 已提交
25 26 27 28 29 30 31 32
    "lint-staged": {
        "*.js": [
            "eslint --fix",
            "git add"
        ]
    },
    "author": "binaryify",
    "license": "MIT",
33 34 35 36
    "files": [
        "module",
        "util"
    ],
B
binaryify 已提交
37 38 39 40 41 42 43 44 45 46 47 48 49 50
    "dependencies": {
        "apicache": "^1.5.2",
        "express": "^4.17.1",
        "pac-proxy-agent": "^3.0.1",
        "request": "^2.88.0"
    },
    "devDependencies": {
        "eslint": "^6.6.0",
        "eslint-plugin-html": "^6.0.0",
        "husky": "^3.0.9",
        "intelli-espower-loader": "^1.0.1",
        "lint-staged": "^9.4.2",
        "mocha": "^6.2.2",
        "power-assert": "^1.6.1"
B
binaryify 已提交
51
    }
B
binaryify 已提交
52
}