1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162 |
- {
- "name": "coffee",
- "version": "5.4.0",
- "description": "Test command line on Node.js.",
- "main": "index.js",
- "dependencies": {
- "cross-spawn": "^6.0.5",
- "debug": "^4.1.0",
- "is-type-of": "^1.2.1"
- },
- "devDependencies": {
- "@types/node": "^10.12.18",
- "autod": "^3.0.1",
- "egg-bin": "^4.8.1",
- "egg-ci": "^1.11.0",
- "eslint": "^5.10.0",
- "eslint-config-egg": "^7.1.0",
- "lodash.ismatch": "^4.4.0",
- "mm": "^2.4.1",
- "mocha": "^5.2.0",
- "mz-modules": "^2.1.0",
- "nyc": "^11.0.2",
- "spy": "^1.0.0",
- "typescript": "^3.2.2"
- },
- "repository": {
- "type": "git",
- "url": "git://github.com/node-modules/coffee.git"
- },
- "homepage": "https://github.com/node-modules/coffee",
- "author": "popomore <sakura9515@gmail.com>",
- "keywords": [
- "cli",
- "test",
- "shell",
- "spawn",
- "fork",
- "child_process",
- "exec"
- ],
- "license": "MIT",
- "engines": {
- "node": ">= 6.0.0"
- },
- "ci": {
- "version": "6, 8, 10, 12",
- "type": "travis, github"
- },
- "scripts": {
- "autod": "autod",
- "lint": "eslint .",
- "test": "npm run lint -- --fix && egg-bin pkgfiles && npm run test-local",
- "test-local": "egg-bin test",
- "cov": "egg-bin cov",
- "ci": "npm run lint && egg-bin pkgfiles --check && npm run cov"
- },
- "files": [
- "index.js",
- "index.d.ts",
- "lib"
- ]
- }
|