12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364 |
- {
- "name": "common-bin",
- "version": "2.9.2",
- "description": "Abstraction bin tool",
- "main": "index.js",
- "dependencies": {
- "@types/dargs": "^5.1.0",
- "@types/node": "^10.12.18",
- "@types/yargs": "^12.0.4",
- "chalk": "^2.4.1",
- "change-case": "^3.0.2",
- "co": "^4.6.0",
- "dargs": "^6.0.0",
- "debug": "^4.1.0",
- "is-type-of": "^1.2.1",
- "semver": "^5.5.1",
- "yargs": "^13.3.0",
- "yargs-parser": "^13.1.2"
- },
- "devDependencies": {
- "autod": "^3.0.1",
- "coffee": "^5.1.0",
- "egg-bin": "^4.17.0",
- "egg-ci": "^1.19.0",
- "eslint": "^5.6.1",
- "eslint-config-egg": "^7.1.0",
- "mm": "^2.4.1",
- "rimraf": "^2.6.2",
- "typescript": "^3.2.2"
- },
- "repository": {
- "type": "git",
- "url": "https://github.com/node-modules/common-bin.git"
- },
- "homepage": "https://github.com/node-modules/common-bin",
- "author": "fengmk2 <fengmk2@gmail.com> (https://github.com/fengmk2)",
- "license": "MIT",
- "scripts": {
- "autod": "autod",
- "clean": "rimraf coverage",
- "lint": "eslint .",
- "test": "npm run lint -- --fix && npm run test-local",
- "test-local": "egg-bin test",
- "cov": "egg-bin cov",
- "ci": "npm run clean && npm run lint && egg-bin cov"
- },
- "engines": {
- "node": ">= 6.0.0"
- },
- "files": [
- "lib",
- "index.d.ts",
- "index.js"
- ],
- "types": "index.d.ts",
- "ci": {
- "version": "8, 10, 12, 14, 16",
- "type": "github",
- "license": {
- "year": "2017",
- "fullname": "node-modules and other contributors"
- }
- }
- }
|