This repository has been archived on 2021-09-16. You can view files and clone it, but cannot push or open issues or pull requests.
2017-06-24 20:44:38 +00:00
|
|
|
{
|
|
|
|
"name": "contexty",
|
2017-07-20 00:42:26 +00:00
|
|
|
"version": "1.0.0",
|
2017-06-25 23:09:23 +00:00
|
|
|
"description": "Asynchronous \"thread-local storage\" for Node.js, using async_hooks",
|
2017-06-24 20:44:38 +00:00
|
|
|
"main": "./dist/index.cjs.js",
|
|
|
|
"module": "./dist/index.es.js",
|
|
|
|
"files": [
|
|
|
|
"dist"
|
|
|
|
],
|
|
|
|
"scripts": {
|
|
|
|
"build": "rollup -c",
|
|
|
|
"lint": "eslint src rollup.config.js",
|
|
|
|
"format": "prettier --write --use-tabs --no-semi --single-quote --trailing-comma es5 \"src/**/*.js\" \"*.js\""
|
|
|
|
},
|
|
|
|
"devDependencies": {
|
2017-07-20 00:28:25 +00:00
|
|
|
"eslint": "^4.2.0",
|
|
|
|
"prettier": "^1.5.3",
|
|
|
|
"rollup": "^0.45.2"
|
2017-06-24 20:44:38 +00:00
|
|
|
},
|
2017-07-20 00:29:58 +00:00
|
|
|
"engines": {
|
|
|
|
"node": ">=8.2.0"
|
|
|
|
},
|
2017-06-24 20:44:38 +00:00
|
|
|
"repository": {
|
|
|
|
"type": "git",
|
|
|
|
"url": "https://github.com/Conduitry/contexty.git"
|
|
|
|
},
|
|
|
|
"author": "Conduitry",
|
|
|
|
"license": "MIT",
|
|
|
|
"bugs": {
|
|
|
|
"url": "https://github.com/Conduitry/contexty/issues"
|
2017-07-20 00:38:59 +00:00
|
|
|
},
|
|
|
|
"homepage": "https://contexty.unwieldy.org"
|
2017-06-24 20:44:38 +00:00
|
|
|
}
|