-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
53 lines (53 loc) · 1.35 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
{
"name": "pgfaker",
"version": "2.1.2",
"description": "Tool for dumping/exporting your postgres database's table data with custom masking rules.",
"main": "./lib/src/index.js",
"type": "module",
"bugs": "https://github.com/imanpalsingh/pg-faker/issues",
"homepage": "https://github.com/imanpalsingh/pg-faker",
"keywords": [
"pg",
"anonymizer",
"mask",
"faker",
"pgfaker",
"database"
],
"scripts": {
"lint": "eslint . --ext .ts",
"build": "rm -rf lib && tsc -b",
"refresh": "tsc -b",
"test": "jest",
"prepare": "npm run build && husky install",
"version": "git add -A src",
"postversion": "git push && git push --tags"
},
"bin": {
"pgfaker": "./lib/src/index.js"
},
"author": "Imanpal Singh",
"license": "ISC",
"devDependencies": {
"@types/jest": "^28.1.4",
"@types/node": "^20.3.2",
"@typescript-eslint/eslint-plugin": "^5.22.0",
"@typescript-eslint/parser": "^5.22.0",
"eslint": "^8.15.0",
"eslint-config-google": "^0.14.0",
"husky": "^8.0.1",
"jest": "^28.1.0",
"ts-jest": "^28.0.2",
"typescript": "^5.0.3"
},
"types": "./lib/src/index.d.ts",
"dependencies": {
"chalk": "^4.1.2",
"commander": "^11.0.0",
"tslib": "^2.3.1"
},
"repository": {
"url": "https://github.com/imanpalsingh/pg-faker.git",
"type": "git"
}
}