-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (55 loc) · 1.26 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
{
"name": "sqldoc",
"version": "1.0.0",
"description": "generate sql documentation",
"main": "index.js",
"directories": {
"doc": "docs"
},
"scripts": {
"test": "jest --config ./test/unit/jest-unit.json",
"build:client": "",
"build:client:watch": "npx ts-node ./scripts/build-watch.client",
"start:server": "npx ts-node ./scripts/start",
"start:server:watch": "npx ts-node ./scripts/start-watch"
},
"author": "Cogi",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/dbwodlf3/sqldoc.git"
},
"devDependencies": {
"@types/jest": "^29.5.2",
"jest": "^29.5.0",
"lit-html": "^2.0.0",
"nodemon": "^2.0.22",
"ts-jest": "^29.1.0",
"ts-node": "^10.9.1",
"tslib": "^2.6.1"
},
"dependencies": {
"@types/express": "^4.17.17",
"@types/morgan": "^1.9.4",
"@types/nunjucks": "^3.2.2",
"express": "^4.18.2",
"morgan": "^1.10.0",
"nunjucks": "^3.2.4"
},
"jest": {
"moduleFileExtensions": [
"js",
"json",
"ts"
],
"testRegex": ".*\\.spec\\.ts$",
"transform": {
"^.+\\.(t|j)s$": "ts-jest"
},
"collectCoverageFrom": [
"**/*.(t|j)s"
],
"coverageDirectory": "../coverage",
"testEnvironment": "node"
}
}