1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495 |
- {
- "name": "egg-bin",
- "version": "4.20.0",
- "description": "egg developer tool",
- "main": "index.js",
- "bin": {
- "egg-bin": "bin/egg-bin.js",
- "mocha": "bin/mocha.js",
- "ets": "bin/ets.js",
- "c8": "bin/c8.js"
- },
- "dependencies": {
- "chalk": "^4.1.1",
- "co-mocha": "^1.2.2",
- "common-bin": "^2.9.0",
- "debug": "^4.3.1",
- "detect-port": "^1.3.0",
- "egg-ts-helper": "^1.25.9",
- "egg-utils": "^2.4.1",
- "espower-source": "^2.3.0",
- "globby": "^9.2.0",
- "inspector-proxy": "^1.2.1",
- "intelli-espower-loader": "^1.1.0",
- "jest-changed-files": "^25.5.0",
- "minimatch": "^3.0.4",
- "mocha": "^6.0.2",
- "mz-modules": "^2.1.0",
- "nyc": "^13.3.0",
- "c8": "^7.11.0",
- "power-assert": "^1.6.1",
- "semver": "^7.3.5",
- "source-map-support": "^0.5.19",
- "test-exclude": "^5.1.0",
- "ts-node": "^7",
- "ypkgfiles": "^1.6.0"
- },
- "devDependencies": {
- "@types/mocha": "^5.0.0",
- "autod": "^3.1.1",
- "babel": "^6.3.26",
- "babel-preset-airbnb": "^1.0.1",
- "babel-register": "^6.4.3",
- "coffee": "^5.4.0",
- "cpy": "^7.0.0",
- "cross-env": "^3.1.3",
- "egg": "^2.29.4",
- "egg-mock": "^4.1.0",
- "enzyme": "^2.0.0",
- "esbuild-register": "^2.5.0",
- "eslint": "^4.12.1",
- "eslint-config-egg": "^7.3.1",
- "git-contributor": "^1.0.10",
- "jsdom": "^8.0.1",
- "mm": "^3.2.0",
- "mz": "^2.7.0",
- "react": "^0.14.7",
- "react-addons-test-utils": "^0.14.7",
- "react-dom": "^0.14.7",
- "typescript": "^3"
- },
- "repository": {
- "type": "git",
- "url": "https://github.com/eggjs/egg-bin.git"
- },
- "bug": {
- "url": "https://github.com/eggjs/egg/issues"
- },
- "homepage": "https://github.com/eggjs/egg-bin",
- "author": "fengmk2 <fengmk2@gmail.com> (https://github.com/fengmk2)",
- "scripts": {
- "contributor": "git-contributor",
- "lint": "eslint .",
- "pkgfiles": "node bin/egg-bin.js pkgfiles",
- "test": "npm run lint -- --fix && npm run test-local",
- "test-local": "node bin/egg-bin.js test -t 3600000",
- "cov": "nyc -r lcov -r text-summary npm run test-local",
- "ci-test-only": "npm run test-local -- test/lib/cmd/cov.test.js",
- "ci": "npm run lint && npm run pkgfiles -- --check && npm run ci-test-only && npm run cov",
- "autod": "node bin/egg-bin.js autod"
- },
- "engines": {
- "node": ">= 6.0.0"
- },
- "publishConfig": {
- "tag": "latest-4"
- },
- "files": [
- "index.js",
- "lib",
- "bin"
- ],
- "ci": {
- "version": "6, 8"
- }
- }
|