1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556 |
- {
- "name": "mz-modules",
- "version": "2.1.0",
- "description": "modernize node.js modules to current ECMAScript standards",
- "dependencies": {
- "glob": "^7.1.2",
- "ko-sleep": "^1.0.3",
- "mkdirp": "^0.5.1",
- "pump": "^3.0.0",
- "rimraf": "^2.6.1"
- },
- "devDependencies": {
- "autod": "^2.9.0",
- "egg-bin": "^4.1.0",
- "egg-ci": "^1.8.0",
- "eslint": "^4.5.0",
- "eslint-config-egg": "^5.0.0",
- "mm": "^2.1.0",
- "mz": "^2.6.0",
- "stat-mode": "^0.2.2",
- "supertest": "^3.0.0",
- "webstorm-disable-index": "^1.2.0"
- },
- "engines": {
- "node": ">=6.0.0"
- },
- "scripts": {
- "autod": "autod",
- "lint": "eslint .",
- "dev": "egg-bin dev",
- "test": "npm run lint -- --fix && npm run test-local",
- "test-local": "egg-bin test",
- "cov": "egg-bin cov",
- "ci": "npm run lint && npm run cov"
- },
- "files": [
- "lib",
- "index.js",
- "glob.js",
- "mkdirp.js",
- "rimraf.js",
- "setImmediate.js",
- "nextTick.js",
- "sleep.js",
- "pump.js"
- ],
- "ci": {
- "version": "6, 8"
- },
- "repository": {
- "type": "git",
- "url": "git@github.com:node-modules/mz-modules.git"
- },
- "author": "popomore <sakura9515@gmail.com>",
- "license": "MIT"
- }
|