-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
executable file
·67 lines (67 loc) · 2.01 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
{
"name": "pgmock2",
"version": "2.1.7",
"description": "An NPM module for mocking a connection to a PostgreSQL database.",
"homepage": "https://jfavrod.github.io/pgmock2/",
"main": "lib/index.js",
"scripts": {
"build": "run-s lint test compile",
"clean": "rm -rf tsconfig.tsbuildinfo lib",
"clean:compile": "run-s clean compile",
"compile": "tsc -p tsconfig.json",
"docker:test": "docker-compose build && docker-compose up",
"docs": "typedoc src",
"lint": "eslint -c .eslintrc.js --ext .ts src/",
"npm:publish": "npm publish",
"pub": "run-s lint test:docker clean docs compile npm:publish",
"test": "./node_modules/.bin/mocha -r ts-node/register test/*.test.ts",
"test:docker": "npm run docker:test"
},
"dependencies": {
"md5": "^2.3.0",
"pg": "^8.7.1"
},
"devDependencies": {
"@types/md5": "^2.3.1",
"@types/mocha": "^9.0.0",
"@types/pg": "^8.6.1",
"@typescript-eslint/eslint-plugin": "^5.6.0",
"@typescript-eslint/eslint-plugin-tslint": "^5.6.0",
"@typescript-eslint/parser": "^5.6.0",
"acorn": "^7.1.1",
"eslint": "^8.4.1",
"eslint-plugin-import": "^2.25.3",
"eslint-plugin-jsdoc": "^37.2.0",
"eslint-plugin-prefer-arrow": "^1.2.3",
"minimist": "^1.2.5",
"mocha": "^9.1.3",
"npm-run-all": "^4.1.5",
"ts-node": "^10.4.0",
"tslint": "^6.1.3",
"typedoc": "^0.22.0",
"typescript": "^4.4.0"
},
"repository": {
"type": "git",
"url": "[email protected]:jfavrod/pgmock2.git"
},
"keywords": [
"pg",
"postgres",
"postgresql",
"mock",
"test",
"testing"
],
"author": "Jason Favrod <[email protected]> (http://jasonfavrod.com)",
"contributors": [
"RipTheJacker <[email protected]> (https://github.com/RipTheJacker)",
"Dorinel Panaite <[email protected]> (http://vanpana.github.io/)",
"Hyeong Jun An (Sam) <[email protected]> (https://sammiee-portfolio.netlify.app)"
],
"license": "MIT",
"engines": {
"node": ">=12.16.1",
"npm": ">=7.8.0"
}
}