You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

76 lines
2.0 KiB

{
"name": "tcb-admin-node",
"version": "1.23.0",
"description": "tencent cloud base admin sdk for node.js",
"main": "index.js",
"scripts": {
"eslint": "eslint \"./**/*.js\" \"./**/*.ts\"",
"eslint-fix": "eslint --fix \"./**/*.js\" \"./**/*.ts\"",
"tsc": "tsc -p tsconfig.json",
"tsc:w": "tsc -p tsconfig.json -w",
"tstest": "mocha --timeout 5000 --require espower-typescript/guess test/**/*.test.ts",
"test": "jest --verbose false -i",
"coverage": "jest --verbose false --coverage"
},
"repository": {
"type": "git",
"url": "https://github.com/TencentCloudBase/tcb-admin-node"
},
"bugs": {
"url": "https://github.com/TencentCloudBase/tcb-admin-node/issues"
},
"homepage": "https://github.com/TencentCloudBase/tcb-admin-node#readme",
"keywords": [
"tcb-admin"
],
"author": "jimmyzhang",
"license": "MIT",
"dependencies": {
"@cloudbase/database": "0.9.15",
"@cloudbase/signature-nodejs": "^1.0.0-beta.0",
"is-regex": "^1.0.4",
"jsonwebtoken": "^8.5.1",
"lodash.merge": "^4.6.1",
"request": "^2.87.0",
"xml2js": "^0.4.19"
},
"devDependencies": {
"@types/jest": "^23.1.4",
"@types/mocha": "^5.2.4",
"@types/node": "^10.12.12",
"bluebird": "^3.7.1",
"dumper.js": "^1.3.0",
"eslint": "^5.16.0",
"eslint-config-prettier": "^4.1.0",
"eslint-plugin-prettier": "^3.0.1",
"eslint-plugin-typescript": "^0.14.0",
"espower-typescript": "^8.1.4",
"husky": "^1.3.1",
"inquirer": "^6.3.1",
"jest": "^23.3.0",
"lint-staged": "^8.1.5",
"mocha": "^5.2.0",
"power-assert": "^1.5.0",
"prettier": "^1.17.0",
"semver": "^6.0.0",
"ts-jest": "^23.10.4",
"tslib": "^1.7.1",
"typescript": "^3.4.3",
"typescript-eslint-parser": "^22.0.0"
},
"engines": {
"node": ">=8.6.0"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.js": [
"eslint --fix",
"git add"
]
}
}