-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.07 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.07 KB
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
{
"name": "pg-anon",
"version": "1.0.2",
"description": "CLI to anonymize PostgreSQL data using Faker.js or Falso",
"type": "module",
"main": "dist/index.js",
"types": "./dist/index.d.ts",
"bin": {
"pg-anon": "./dist/index.js"
},
"scripts": {
"build": "tsc",
"prepublish": "tsc",
"test": "echo \"Error: no test specified\" && exit 1",
"watch": "tsc --watch"
},
"keywords": [
"postgres",
"faker.js",
"falso",
"anonymize",
"anonymization"
],
"author": "Karl von Randow",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "git+https://github.com/cactuslab/pg-anon.git"
},
"homepage": "https://github.com/cactuslab/pg-anon#readme",
"dependencies": {
"@faker-js/faker": "^9.8.0",
"@ngneat/falso": "^7.4.0",
"pg": "^8.16.1"
},
"devDependencies": {
"@eslint/js": "^9.29.0",
"@stylistic/eslint-plugin": "^4.4.1",
"@types/pg": "^8.15.4",
"eslint": "^9.29.0",
"typescript": "^5.8.3",
"typescript-eslint": "^8.34.1"
},
"publishConfig": {
"access": "public"
}
}