-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
95 lines (95 loc) · 2.59 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
{
"name": "inceptum-etl",
"version": "0.11.3",
"description": "A framework for ETL processes",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc",
"clean": "rm -rf dist docs && mkdir docs",
"test": "NODE_ENV=test nyc --reporter=lcov mocha",
"itest": "NODE_ENV=test nyc --reporter=lcov --report-dir=icoverage mocha itest",
"coverage": "NODE_ENV=test nyc --reporter=lcov --reporter=text mocha",
"lint": "tslint -p .",
"docsapi": "typedoc --out docs/api --theme node_modules/typedoc-clarity-theme/bin .",
"docssite": "jekyll build -s docs-src -p docs-src/_plugins --layouts docs-src/_layouts -d docs && touch docs/.nojekyll",
"docsserve": "jekyll serve -s docs-src -p docs-src/_plugins --layouts docs-src/_layouts -d docs",
"docs": "npm run docssite && npm run docsapi",
"prepublishOnly": "npm run clean && tsc && npm test && npm run lint",
"precommit": "yarn install && npm run lint && yarn coverage-check",
"prepush": "node .checkpush.js",
"coverage-check": "NODE_ENV=test nyc --check-coverage --lines 62 mocha"
},
"repository": {
"type": "git",
"url": "git+https://github.com/hipages/inceptum-etl"
},
"engine": {
"node": ">7.0.0"
},
"files": [
"dist"
],
"author": "Hipages",
"license": "Apache-2.0",
"directories": {
"lib": "dist",
"test": "test"
},
"dependencies": {
"bluebird": "^3.5.0",
"commander": "^2.11.0",
"config": "1.25.1",
"csvjson": "^4.3.3",
"csvtojson": "^1.1.7",
"googleapis": "^20.1.0",
"inceptum": "^0.9.6",
"lodash": "^4.17.4",
"moment": "^2.18.1",
"moment-timezone": "^0.5.14",
"n-readlines": "^0.2.8",
"node-adwords": "201802.1.0",
"s3": "^4.4.0",
"temp": "^0.8.3"
},
"devDependencies": {
"@types/node": "7.0.23",
"@types/sinon": "^2.3.3",
"@types/source-map-support": "^0.2.28",
"co-mocha": "^1.1.2",
"codecov": "^2.2.0",
"doubleagent": "^1.1.0",
"husky": "^0.11.6",
"mocha": "^2.5.3",
"mocha-lcov-reporter": "^1.2.0",
"mocha-typescript": "1.1.2",
"must": "^0.13.2",
"nock": "^9.0.14",
"nyc": "^10.3.2",
"sinon": "^3.2.0",
"ts-node": "4.0.1",
"tslint": "^5.8.0",
"tslint-config-shopify": "2.0.0",
"typedoc-clarity-theme": "^1.1.0",
"typescript": "2.6.1"
},
"nyc": {
"include": [
"src/**/*.ts",
"src/**/*.tsx"
],
"extension": [
".ts",
".tsx"
],
"require": [
"ts-node/register"
],
"reporter": [
"text-summary",
"html"
],
"sourceMap": true,
"instrument": true
}
}