-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
52 lines (52 loc) · 1.26 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
{
"name": "gulp-etl-target-flat",
"version": "1.0.0",
"repository": "https://github.com/gulpetl/gulp-etl-target-flat",
"description": "Take JSON Message Streams and compose arbitrary flat files from them with a user function that is called to convert each object to a line",
"main": "dist/js/plugin.js",
"typings": "dist/types/plugin.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "tsc && tsc --module commonjs --outDir dist/lib",
"test": "jest"
},
"author": "peterl@sbcotton.com",
"contributors": [
"Manoj Khatri"
],
"license": "MIT",
"keywords": [
"gulpplugin",
"gulp-etl",
"flat",
"delimited",
"fixed",
"width",
"file"
],
"homepage": "https://gulpetl.com",
"dependencies": {
"gulp-error-handle": "^1.0.1",
"loglevel": "^1.6.3",
"pkginfo": "^0.4.1",
"plugin-error": "^1.0.1",
"split2": "^3.1.1",
"through2": "^3.0.1",
"vinyl": "^2.2.0"
},
"devDependencies": {
"@types/jest": "^23.3.14",
"@types/loglevel": "^1.6.3",
"@types/node": "^10.14.10",
"@types/vinyl": "^2.0.3",
"del": "^4.1.1",
"gulp": "^4.0.2",
"jest": "^24.8.0",
"jest-spec-reporter": "^1.0.6",
"ts-jest": "^24.0.2",
"ts-node": "^7.0.1",
"typescript": "^3.5.2"
}
}