1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556 |
- {
- "name": "sdk-base",
- "version": "3.6.0",
- "description": "a base class for sdk with default error handler",
- "main": "index.js",
- "scripts": {
- "lint": "eslint --ext .js .",
- "test": "npm run lint && npm run test-local",
- "test-local": "egg-bin test",
- "cov": "egg-bin cov",
- "ci": "npm run autod -- --check && npm run pkgfiles && npm run lint && npm run cov",
- "autod": "autod",
- "pkgfiles": "egg-bin pkgfiles --check"
- },
- "keywords": [
- "sdk",
- "error"
- ],
- "files": [
- "index.js",
- "index.d.ts"
- ],
- "author": {
- "name": "dead_horse",
- "email": "dead_horse@qq.com",
- "url": "http://deadhorse.me"
- },
- "repository": {
- "type": "git",
- "url": "git@github.com:node-modules/sdk-base"
- },
- "license": "MIT",
- "dependencies": {
- "await-event": "^2.1.0",
- "await-first": "^1.0.0",
- "co": "^4.6.0",
- "is-type-of": "^1.2.1"
- },
- "devDependencies": {
- "@types/node": "^10.5.3",
- "autod": "^3.1.0",
- "egg-bin": "^4.12.3",
- "egg-ci": "^1.11.0",
- "eslint": "^5.16.0",
- "eslint-config-egg": "^7.3.1",
- "pedding": "^1.1.0",
- "runscript": "^1.3.0",
- "typescript": "^3.4.3"
- },
- "engine": {
- "node": ">= 6.0.0"
- },
- "ci": {
- "version": "6, 8, 10, 11"
- }
- }
|