strom/package.json

61 lines
1.4 KiB
JSON
Raw Normal View History

2017-03-19 08:20:50 +00:00
{
2018-11-26 06:38:19 +00:00
"name": "mhysa",
"version": "1.0.1",
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",
"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",
"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",
"typescript": "^3.1.6"
},
"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
}