-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
37 lines (37 loc) · 905 Bytes
/
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
{
"name": "@uphold/anonymizer",
"version": "6.0.1",
"description": "Object redaction library that supports whitelisting, blacklisting and wildcard matching",
"homepage": "https://github.com/uphold/anonymizer#readme",
"bugs": {
"url": "https://github.com/uphold/anonymizer/issues"
},
"repository": "uphold/anonymizer",
"license": "MIT",
"main": "src",
"directories": {
"test": "test"
},
"publishConfig": {
"access": "public"
},
"scripts": {
"lint": "uphold-scripts lint .",
"release": "release-it",
"test": "uphold-scripts test"
},
"dependencies": {
"json-stringify-safe": "^5.0.1",
"lodash": "^4.17.21",
"serialize-error": "^8.0.0",
"traverse": "0.6.9"
},
"devDependencies": {
"@uphold/github-changelog-generator": "^3.4.0",
"release-it": "^17.0.1",
"uphold-scripts": "^0.9.0"
},
"pre-commit": [
"lint"
]
}