forked from solvvy/redact-pii
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 1.1 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
{
"name": "redact-pii",
"version": "3.4.0",
"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",
"test": "jest",
"test_prettier": "prettier './+(src|test)/**/*.+(js|ts|tsx)' --list-different",
"prettier": "prettier './+(src|test)/**/*.+(js|ts|tsx)' --write"
},
"repository": {
"type": "git",
"url": "https://github.com/solvvy/redact-pii.git"
},
"author": "Christian Theilemann <[email protected]>",
"license": "MIT",
"dependencies": {
"@google-cloud/dlp": "^5.0.0",
"lodash": "^4.17.21"
},
"devDependencies": {
"@types/jest": "28.1.6",
"@types/lodash": "^4.14.182",
"del-cli": "5.0.0",
"jest": "28.1.3",
"prettier": "2.7.1",
"ts-jest": "28.0.7",
"typescript": "4.7.4"
},
"prettier": {
"singleQuote": true,
"printWidth": 120
}
}