-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
64 lines (64 loc) · 1.39 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
54
55
56
57
58
59
60
61
62
63
64
{
"name": "mask-json",
"version": "1.0.3",
"repository": {
"type": "git",
"url": "https://github.com/nunofgs/mask-json.git"
},
"description": "Redacts values in objects.",
"keywords": [
"mask",
"deep",
"mask-json",
"redact"
],
"author": {
"name": "Nuno Sousa",
"email": "[email protected]"
},
"homepage": "https://github.com/nunofgs/mask-json",
"bugs": {
"url": "https://github.com/nunofgs/mask-json/issues"
},
"license": "SEE LICENSE IN LICENSE",
"main": "./src/index.js",
"scripts": {
"changelog": "github-changelog-generator --owner=nunofgs --repo=mask-json --future-release=v$npm_package_version > CHANGELOG.md",
"lint": "eslint .",
"test": "jest",
"version": "npm run changelog && git add -A CHANGELOG.md"
},
"dependencies": {
"lodash": "^4.17.4"
},
"devDependencies": {
"@uphold/github-changelog-generator": "^0.8.1",
"eslint": "^6.2.2",
"eslint-config-uphold": "^1.0.0",
"husky": "^3.0.4",
"jest": "^24.9.0",
"lint-staged": "^9.2.5"
},
"engines": {
"node": ">=5.0.0"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.js": [
"npm run lint --fix",
"git add"
]
},
"jest": {
"collectCoverage": true,
"modulePaths": [
"<rootDir>"
],
"testEnvironment": "node",
"testRegex": "test/.*\\.test.js$"
}
}