-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
107 lines (107 loc) · 2.81 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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
{
"name": "@lpezet/etl-js",
"version": "3.1.2",
"description": "ETL made simple and reproducible.",
"main": "./dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"tsc": "tsc",
"dist": "npm run clean && npm run tsc -- --build tsconfig.publish.json",
"prepublish": "npm run dist",
"clean": "rimraf dist",
"lint": "eslint --ext .ts lib/ tests/",
"mocha-single": "nyc --check-coverage=false --reporter=html mocha",
"release": "release-it",
"fix": "eslint -ext .ts lib/ tests/ --fix",
"pretest": "npm run lint",
"test": "nyc --reporter=html --reporter=text-summary mocha --check-leaks --reporter spec \"./tests/**/*.spec.ts\"",
"posttest": "nyc check-coverage",
"docs-gen": "doctoc README.md Mods.md ModsDev.md --github --no-title",
"coverage": "nyc report --reporter=text-lcov | coveralls"
},
"repository": {
"type": "git",
"url": "git+https://github.com/lpezet/etl-js.git"
},
"keywords": [
"etl"
],
"author": "Luke Pezet <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/lpezet/etl-js/issues"
},
"files": [
"LICENSE",
"README.md",
"dist"
],
"nyc": {
"include": "lib",
"check-coverage": true,
"lines": 90,
"statements": 90,
"functions": 90,
"branches": 80,
"reporter": [
"lcov",
"text-summary"
],
"require": [
"ts-node/register"
],
"extension": [
".js",
".ts"
],
"exclude": [
"tests/**/*"
]
},
"homepage": "https://github.com/lpezet/etl-js#readme",
"dependencies": {
"filtrex": "^2.2.3",
"google-auth-library": "^6.0.1",
"jmespath": "^0.15.0",
"jsonpath-plus": "^4.0.0",
"log4js": "^6.1.2",
"open": "^7.0.4",
"server-destroy": "^1.0.1",
"ssh2": "^1.5.0"
},
"devDependencies": {
"@types/chai": "^4.1.6",
"@types/chai-as-promised": "^7.1.0",
"@types/jest": "^25.2.2",
"@types/jmespath": "^0.15.0",
"@types/mocha": "^8.2.0",
"@types/node": "^10.17.17",
"@types/sinon": "^5.0.5",
"@types/sinon-chai": "^3.2.2",
"@types/ssh2": "^0.5.43",
"@typescript-eslint/eslint-plugin": "~2.31.0",
"@typescript-eslint/parser": "~2.3.0",
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"chai-spies": "^1.0.0",
"crypto": "^1.0.1",
"doctoc": "^2.0.0",
"eslint": "^6.8.0",
"eslint-config-google": "^0.14.0",
"eslint-config-prettier": "^6.10.0",
"eslint-plugin-jsdoc": "^22.1.0",
"eslint-plugin-prettier": "^3.1.0",
"mocha": "^10.0.0",
"nyc": "^14.1.1",
"prettier": "^1.19.0",
"release-it": "^15.4.0",
"rimraf": "^3.0.2",
"sinon": "^6.3.4",
"sinon-chai": "^3.2.0",
"source-map-support": "^0.5.9",
"supertest": "^3.3.0",
"ts-node": "^7.0.1",
"typescript": "^3.9.2",
"yaml-cfn": "^0.2.1"
}
}