-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
106 lines (106 loc) · 3.21 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
{
"name": "@lpezet/etl-js-cli",
"version": "3.1.0",
"description": "Command Line Interface for ETL-JS.",
"main": "",
"bin": {
"etl-js": "bin/etl-js.bin.js"
},
"scripts": {
"copy-templates": "[ ! -d dist/lib/templates ] && mkdir -p dist/lib/templates; cp -r lib/templates/* dist/lib/templates/",
"dist": "npm run clean && npm run tsc -- --build tsconfig.publish.json && npm run copy-templates && cp README.md dist/ && chmod +x dist/bin/etl-js.bin.js",
"tsc": "tsc",
"clean": "rimraf dist",
"lint": "eslint --ext .ts lib/ tests/",
"mocha-single": "nyc --reporter=html mocha --require ts-node/register --require source-map-support/register --require tests/helpers/mocha-bootstrap.js --timeout=1000",
"release": "release-it",
"fix": "eslint -ext .ts lib/ tests/ --fix",
"pretest": "npm run lint",
"test": "nyc --reporter=html --reporter=text-summary mocha --require ts-node/register --require source-map-support/register --require tests/helpers/mocha-bootstrap.js --bail --check-leaks --reporter spec \"./tests/**/*.spec.ts\"",
"posttest": "nyc check-coverage",
"docs-gen": "doctoc README.md --github --no-title",
"coverage": "nyc report --reporter=text-lcov | coveralls",
"prepare_off": "./node_modules/marked-man/bin/marked-man --version v1.0.0 --manual 'ETL-JS CLI' ./man/Manual.md > ./man/etl-js-cli.1",
"prepare_off_2": "npm run dist"
},
"repository": {
"type": "git",
"url": "git+https://github.com/lpezet/etl-js-cli.git"
},
"keywords": [
"etl"
],
"files": [
"lib/**/*.js",
"lib/**/*.d.ts",
"bin/*.js",
"bin/*.d.ts",
"lib/templates/*"
],
"nyc": {
"include": "lib",
"check-coverage": true,
"lines": 85,
"statements": 85,
"functions": 75,
"branches": 80,
"reporter": [
"lcov",
"text-summary",
"html"
],
"require": [
"ts-node/register"
],
"extension": [
".js",
".ts"
],
"exclude": [
"tests/**/*"
]
},
"author": "Luke Pezet <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/lpezet/etl-js-cli/issues"
},
"homepage": "https://github.com/lpezet/etl-js-cli#readme",
"dependencies": {
"@lpezet/etl-js": "^3.1.0",
"commander": "^5.1.0",
"lodash": "^4.17.21",
"log4js": "^6.1.2",
"winston": "^2.4.4",
"yaml-cfn": "^0.2.3"
},
"devDependencies": {
"@types/chai": "^4.1.6",
"@types/chai-as-promised": "^7.1.0",
"@types/jest": "^25.2.2",
"@types/lodash": "^4.14.149",
"@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",
"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": "^8.4.0",
"nyc": "^14.1.1",
"prettier": "^1.19.0",
"rimraf": "^3.0.2",
"sinon": "^6.3.4",
"sinon-chai": "^3.2.0",
"ts-node": "^7.0.1",
"typescript": "^3.9.2"
}
}