-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
52 lines (52 loc) · 1.65 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": "proc-that",
"version": "0.0.0-development",
"description": "proc(ess)-that - easy extendable etl tool for nodejs written in typesript",
"main": "dist/index.js",
"typings": "dist/index.d.js",
"scripts": {
"clean": "del-cli ./dist ./coverage",
"build": "npm run clean && tsc -p ./config/tsconfig.build.json",
"develop": "npm run clean && tsc -p .",
"lint": "npm run lint:ts && npm run prettier",
"lint:fix": "npm run lint:ts:fix && npm run prettier:fix",
"lint:ts": "eslint --max-warnings=-1",
"lint:ts:fix": "eslint --max-warnings=-1 --fix",
"prettier": "prettier --config .prettierrc.json --list-different \"./**/*.{ts,tsx}\"",
"prettier:fix": "prettier --config .prettierrc.json --list-different \"./**/*.{ts,tsx}\" --write",
"test": "npm run lint && npm run clean && jest -c ./jest.json",
"test:watch": "npm run clean && jest -c ./jest.json --watch"
},
"keywords": [
"etl",
"node",
"typescript"
],
"engines": {
"node": ">=16"
},
"repository": {
"type": "git",
"url": "https://github.com/smartive/proc-that.git"
},
"bugs": "https://github.com/smartive/proc-that/issues",
"author": "Christoph Bühler <christoph.buehler@bluewin.ch>",
"license": "MIT",
"devDependencies": {
"@smartive/eslint-config": "^3.1.1",
"@smartive/prettier-config": "^3.0.0",
"@types/jest": "^29.2.4",
"del-cli": "^5.0.0",
"eslint": "^8.30.0",
"jest": "^29.3.1",
"prettier": "^2.8.1",
"ts-jest": "^29.0.3",
"tsutils": "^3.21.0",
"typescript": "^4.9.4"
},
"dependencies": {
"@types/node": "^18.11.17",
"rxjs": "^7.8.0",
"tslib": "^2.4.1"
}
}