2017-03-19 08:20:50 +00:00
|
|
|
{
|
2018-11-26 06:38:19 +00:00
|
|
|
"name": "mhysa",
|
2018-12-04 06:30:27 +00:00
|
|
|
"version": "1.0.2",
|
2018-11-30 06:31:09 +00:00
|
|
|
"description": "Streams and event emitter utils for Node.js",
|
2018-11-26 01:00:37 +00:00
|
|
|
"keywords": [
|
|
|
|
"promise",
|
|
|
|
"stream",
|
|
|
|
"event emitter",
|
|
|
|
"utils"
|
|
|
|
],
|
|
|
|
"author": {
|
2018-11-30 06:31:09 +00:00
|
|
|
"name": "Wenzil"
|
2018-11-26 01:00:37 +00:00
|
|
|
},
|
|
|
|
"license": "MIT",
|
2018-11-26 01:26:18 +00:00
|
|
|
"main": "dist/index.js",
|
2018-11-29 06:19:18 +00:00
|
|
|
"types": "dist/index.d.ts",
|
2018-11-26 01:00:37 +00:00
|
|
|
"files": [
|
|
|
|
"dist"
|
|
|
|
],
|
|
|
|
"repository": {
|
2018-11-29 04:46:12 +00:00
|
|
|
"url": "git@github.com:Wenzil/Mhysa.git",
|
2018-11-26 01:00:37 +00:00
|
|
|
"type": "git"
|
|
|
|
},
|
|
|
|
"scripts": {
|
|
|
|
"test": "ava",
|
|
|
|
"lint": "tslint -p tsconfig.json",
|
|
|
|
"validate:tslint": "tslint-config-prettier-check ./tslint.json",
|
|
|
|
"prepublishOnly": "yarn lint && yarn test && yarn tsc"
|
|
|
|
},
|
|
|
|
"dependencies": {},
|
|
|
|
"devDependencies": {
|
|
|
|
"@types/chai": "^4.1.7",
|
|
|
|
"@types/node": "^10.12.10",
|
2019-06-13 19:12:55 +00:00
|
|
|
"@types/typescript": "^2.0.0",
|
2018-11-26 01:00:37 +00:00
|
|
|
"ava": "^1.0.0-rc.2",
|
|
|
|
"chai": "^4.2.0",
|
2018-11-29 04:59:24 +00:00
|
|
|
"mhysa": "./",
|
2018-11-26 01:00:37 +00:00
|
|
|
"prettier": "^1.14.3",
|
|
|
|
"ts-node": "^7.0.1",
|
|
|
|
"tslint": "^5.11.0",
|
|
|
|
"tslint-config-prettier": "^1.16.0",
|
|
|
|
"tslint-plugin-prettier": "^2.0.1",
|
2019-08-07 21:18:51 +00:00
|
|
|
"typescript": "^3.5.3"
|
2018-11-26 01:00:37 +00:00
|
|
|
},
|
|
|
|
"ava": {
|
|
|
|
"files": [
|
|
|
|
"src/**/*.spec.ts"
|
|
|
|
],
|
|
|
|
"sources": [
|
|
|
|
"src/**/*.ts"
|
|
|
|
],
|
|
|
|
"compileEnhancements": false,
|
|
|
|
"failWithoutAssertions": false,
|
|
|
|
"extensions": [
|
|
|
|
"ts"
|
|
|
|
],
|
|
|
|
"require": [
|
|
|
|
"ts-node/register/transpile-only"
|
|
|
|
]
|
|
|
|
}
|
2017-03-19 08:20:50 +00:00
|
|
|
}
|