generated from rpidanny/typescript-package-template
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
78 lines (78 loc) · 2.13 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
{
"name": "@rpidanny/streamline.js",
"version": "1.0.3",
"description": "A JavaScript package that helps to reads and processes a stream line-by-line in order or in batches in parallel.",
"main": "dist/index.js",
"types": "dist/index.d.js",
"scripts": {
"build": "./node_modules/typescript/bin/tsc -p ./tsconfig.build.json",
"lint": "eslint . --ext .js,.ts",
"lint:fix": "npm run lint -- --fix",
"test": "npm run lint && jest ./test/*",
"test:watch": "jest --watch ./test/unit/*.spec.ts",
"test:watch:test": "jest --watch ./test/unit/Streamline.spec.ts",
"dev": "ts-node src/index.ts",
"semantic-release": "semantic-release"
},
"repository": {
"type": "git",
"url": "git+https://github.com/rpidanny/streamline.js.git"
},
"keywords": [
"typescript",
"javascript",
"stream",
"data",
"big data",
"data processing"
],
"author": "Abhishek <abhishek.rpidanny@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/rpidanny/streamline.js/issues"
},
"homepage": "https://github.com/rpidanny/streamline.js#readme",
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS",
"pre-push": "npm run lint"
}
},
"lint-staged": {
"*.ts": [
"npm run lint"
]
},
"devDependencies": {
"@commitlint/cli": "^12.0.0",
"@commitlint/config-conventional": "^12.0.0",
"@rpidanny/eslint-config-typescript": "^1.0.1",
"@semantic-release/changelog": "^5.0.1",
"@semantic-release/commit-analyzer": "^8.0.1",
"@semantic-release/git": "^9.0.0",
"@semantic-release/npm": "^7.0.6",
"@types/highland": "^2.12.10",
"eslint": "^7.13.0",
"husky": "^5.0.9",
"jest": "^26.2.2",
"lint-staged": "^10.5.0",
"prettier": "^2.0.5",
"semantic-release": "^17.2.1",
"to-readable-stream": "^2.1.0",
"ts-jest": "^26.1.4",
"ts-node": "^9.0.0",
"tsc": "^1.20150623.0",
"typescript": "^4.0.2"
},
"files": [
"dist/**/*"
],
"publishConfig": {
"access": "public"
},
"dependencies": {
"csv-parse": "^4.12.0",
"highland": "^2.13.5"
}
}