-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathpackage.json
62 lines (62 loc) · 1.78 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
{
"name": "typeorm-mock-unit-testing-example",
"version": "1.0.0",
"description": "",
"main": "src/index.ts",
"directories": {
"test": "test"
},
"scripts": {
"start": "ts-node src/index.ts",
"build": "rimraf build && tsc",
"test": "npm run test:mocha && npm run test:jest",
"lint": "npm run lint:code && npm run lint:commit",
"test:jest": "rimraf build && tsc && jest -c jest.unit.config.js",
"test:mocha": "rimraf build && tsc && mocha build/test/unit/mocha/test.*.js",
"test:e2e": "rimraf build && tsc && jest -c jest.e2e.config.js --forceExit --runInBand --detectOpenHandles --coverage --coverageReporters=text-lcov",
"lint:code": "tslint -c tslint.json -p tsconfig.json",
"lint:commit": "echo \"module.exports = {extends: ['@commitlint/config-conventional']}\" > commitlint.config.js && commitlint . && rimraf commitlint.config.js"
},
"engines": {
"node": ">=8.0.0"
},
"keywords": [
"NodeJS",
"TypeScript",
"Express",
"TypeORM",
"Jest",
"Mocha",
"Sinon",
"unit",
"tests",
"unit testing"
],
"author": "YegorZaremba <[email protected]>",
"dependencies": {
"express": "4.17.1",
"pg": "7.11.0",
"reflect-metadata": "0.1.13",
"typeorm": "0.2.19"
},
"devDependencies": {
"@commitlint/cli": "^8.1.0",
"@commitlint/config-conventional": "^8.1.0",
"@types/express": "4.17.0",
"@types/jest": "24.0.15",
"@types/node": "12.0.10",
"@types/request-promise": "4.1.44",
"@types/sinon": "7.0.13",
"coveralls": "3.0.4",
"jest": "24.8.0",
"mocha": "6.1.4",
"request": "2.88.0",
"request-promise": "4.2.4",
"rimraf": "2.6.3",
"sinon": "7.3.2",
"ts-jest": "24.0.2",
"ts-node": "8.3.0",
"tslint": "5.18.0",
"typescript": "3.6.3"
}
}