Archived
1
Fork 0
This repository has been archived on 2021-09-16. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
contexty/package.json

34 lines
802 B
JSON
Raw Permalink Normal View History

2017-06-24 16:44:38 -04:00
{
"name": "contexty",
2017-07-19 20:42:26 -04:00
"version": "1.0.0",
2017-06-25 19:09:23 -04:00
"description": "Asynchronous \"thread-local storage\" for Node.js, using async_hooks",
2017-06-24 16:44:38 -04: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-19 20:28:25 -04:00
"eslint": "^4.2.0",
"prettier": "^1.5.3",
"rollup": "^0.45.2"
2017-06-24 16:44:38 -04:00
},
2017-07-19 20:29:58 -04:00
"engines": {
"node": ">=8.2.0"
},
2017-06-24 16:44:38 -04: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-19 20:38:59 -04:00
},
"homepage": "https://contexty.unwieldy.org"
2017-06-24 16:44:38 -04:00
}