node-zone
Version:
minimal Zone implementation for Node
69 lines (68 loc) • 1.48 kB
JSON
{
"name": "node-zone",
"version": "0.3.0",
"license": "ISC",
"description": "minimal Zone implementation for Node",
"keywords": [
"async",
"asynchronous",
"context",
"node",
"zone",
"zones"
],
"homepage": "https://github.com/JsCommunity/node-zone",
"bugs": "https://github.com/JsCommunity/node-zone/issues",
"repository": {
"type": "git",
"url": "https://github.com/JsCommunity/node-zone.git"
},
"author": {
"name": "Julien Fontanet",
"email": "julien.fontanet@isonoe.net"
},
"preferGlobal": false,
"bin": {},
"files": [
"index.js"
],
"engines": {
"node": ">=8.1.0"
},
"devDependencies": {
"cross-env": "^5.1.3",
"eslint": "^5.10.0",
"eslint-config-prettier": "^3.3.0",
"eslint-config-standard": "^12.0.0",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-node": "^8.0.0",
"eslint-plugin-promise": "^4.0.1",
"eslint-plugin-standard": "^4.0.0",
"husky": "^1.2.0",
"jest": "^23.6.0",
"lint-staged": "^8.1.0",
"prettier": "^1.15.3",
"rimraf": "^2.6.1"
},
"scripts": {
"dev-test": "jest --bail --watch",
"test": "jest"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"jest": {
"collectCoverage": true,
"testEnvironment": "node",
"testRegex": "\\.spec\\.js$"
},
"lint-staged": {
"*.js": [
"prettier --write",
"git add",
"eslint --ignore-pattern '!*''"
]
}
}