generated from materya/template-repo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
96 lines (96 loc) · 2.49 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
96
{
"name": "@materya/quartz",
"description": "Set of tools to manage a PostgreSQL database for nodejs.",
"version": "1.0.0-alpha.16",
"homepage": "https://github.com/materya/quartz",
"url": "https://github.com/materya/quartz",
"author": "Sylver <sylver@materya.io>",
"email": "sylver@materya.io",
"repository": {
"type": "git",
"url": "https://github.com/materya/quartz.git"
},
"bugs": {
"url": "https://github.com/materya/quartz/issues"
},
"license": "GPL-3.0",
"keywords": [
"typescript",
"pg",
"node",
"tools",
"migration",
"migrate",
"seed",
"slonik"
],
"engines": {
"node": ">=8",
"npm": ">=6"
},
"main": "./dist/index.js",
"types": "./dist/@types/index.d.ts",
"bin": {
"migrate": "./dist/bin/migrate.js",
"seed": "./dist/bin/seed.js"
},
"scripts": {
"build": "run-s build:*",
"build:compile": "tsc -d",
"develop": "tsc-watch --onSuccess \"node ./dist/server.js\"",
"describe": "npm-scripts-info",
"release": "standard-version -s",
"test": "run-s test:*",
"test:ts": "tsc --noEmit",
"test:lint": "eslint 'src/**/*.ts'",
"test:unit": "mocha test/**/*.ts",
"coverage": "run-s coverage:*",
"coverage:unit": "nyc --silent npm run test:unit",
"coverage:report": "nyc report --reporter=lcov --reporter=text",
"coverage:codecov": "codecov",
"vulnerabilities": "snyk monitor",
"prepare": "husky install"
},
"lint-staged": {
"*.ts": [
"eslint"
]
},
"dependencies": {
"@materya/carbon": "2.0.1",
"@types/slonik": "22.1.5",
"debug": "4.3.4",
"slonik": "31.3.0",
"slonik-sql-tag-raw": "1.1.4"
},
"devDependencies": {
"@istanbuljs/nyc-config-typescript": "1.0.2",
"@types/chai": "4.3.3",
"@types/debug": "4.1.7",
"@types/mocha": "10.0.0",
"@types/node": "18.11.0",
"@types/pg": "8.6.5",
"@types/sinon": "10.0.13",
"@types/sinon-chai": "3.2.8",
"chai": "4.3.6",
"codecov": "3.8.3",
"eslint": "8.25.0",
"eslint-config-materya": "9.0.0",
"eslint-import-resolver-typescript": "3.5.1",
"eslint-plugin-mocha": "10.1.0",
"husky": "8.0.1",
"lint-staged": "13.0.3",
"mocha": "10.0.0",
"npm-run-all": "4.1.5",
"nyc": "15.1.0",
"sinon": "14.0.1",
"sinon-chai": "3.7.0",
"source-map-support": "0.5.21",
"standard-version": "9.5.0",
"supertest": "6.3.0",
"ts-node": "10.9.1",
"tsc-watch": "5.0.3",
"tsconfig-paths": "4.1.0",
"typescript": "4.8.4"
}
}