-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
52 lines (52 loc) · 1.83 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": "sourced-repo-typeorm",
"version": "0.0.0-development",
"description": "",
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"types": "dist/esm/index.d.ts",
"scripts": {
"build": "tsc -p tsconfig.json && tsc -p tsconfig-cjs.json",
"test": "jest --config ./jest.json --coverage --verbose",
"test:watch": "DEBUG=sourced* jest --config ./jest.json --coverage --verbose --watch",
"test:integration": "DEBUG=sourced-repo-typeorm* jest --config ./jest.integration.json --coverage --verbose",
"test:integration:watch": "DEBUG=sourced-repo-typeorm* jest --config ./jest.integration.json --coverage --verbose --watch",
"test:all": "DEBUG=sourced-repo-typeorm* jest --config ./jest.all.json --coverage --verbose",
"lint": "eslint src __tests__ --ext=.ts",
"lint:fix": "eslint --fix src __tests__ --ext=.ts",
"semantic-release": "semantic-release"
},
"repository": {
"type": "git",
"url": "https://github.com/CloudNativeEntrepreneur/sourced-repo-typeorm.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/CloudNativeEntrepreneur/sourced-repo-typeorm/issues"
},
"homepage": "https://github.com/CloudNativeEntrepreneur/sourced-repo-typeorm#readme",
"dependencies": {
"eventemitter3": "4.0.7",
"pg": "8.13.1",
"typeorm": "0.3.17"
},
"devDependencies": {
"@types/debug": "4.1.12",
"@types/jest": "27.5.2",
"@types/node": "17.0.45",
"@typescript-eslint/eslint-plugin": "5.62.0",
"@typescript-eslint/parser": "5.62.0",
"codecov": "3.8.3",
"eslint": "8.57.1",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-prettier": "4.2.1",
"jest": "27.5.1",
"prettier": "2.8.8",
"semantic-release": "24.2.0",
"sourced": "4.0.7",
"ts-jest": "27.1.5",
"typescript": "4.8.4",
"uuid": "9.0.1"
}
}