forked from tHBp/redact-pii-light
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
48 lines (48 loc) · 1.43 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
{
"name": "@libretto/redact-pii-light",
"version": "1.0.1",
"description": "Remove personally identifiable information from text.",
"main": "lib/index.js",
"typings": "lib/index.d.ts",
"scripts": {
"build": "del lib && tsc --pretty",
"typecheck": "tsc --noEmit",
"prepublishOnly": "npm run verify_all && npm run build",
"verify_all": "npm run typecheck && npm test && npm run test_prettier && changelog-verify CHANGELOG.md",
"test": "jest",
"test_prettier": "prettier './+(src|test)/**/*.+(js|ts|tsx)' --list-different",
"prettier": "prettier './+(src|test)/**/*.+(js|ts|tsx)' --write",
"version": "version-changelog CHANGELOG.md && changelog-verify CHANGELOG.md && git add CHANGELOG.md"
},
"engines": {
"node": ">8.0.0"
},
"repository": {
"type": "git",
"url": "https://github.com/libretto-ai/redact-pii-light.git"
},
"author": "tHBp <thehalfbloodprince.github@gmail.com>",
"license": "MIT",
"dependencies": {
"lodash": "^4.17.20"
},
"peerDependencies": {
"@google-cloud/dlp": "^5.8.0"
},
"devDependencies": {
"@google-cloud/dlp": "5.8.0",
"@types/jest": "24.0.11",
"@types/lodash": "^4.14.136",
"changelog-verify": "1.1.2",
"del-cli": "1.1.0",
"jest": "^29.7.0",
"prettier": "1.17.0",
"ts-jest": "^29.2.4",
"typescript": "^5.5.4",
"version-changelog": "3.1.1"
},
"prettier": {
"singleQuote": true,
"printWidth": 120
}
}