-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
57 lines (57 loc) · 1.27 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
{
"name": "mask-xml",
"version": "1.0.4",
"description": "Redacts values in xml files.",
"keywords": [
"deep",
"mask",
"mask-xml",
"redact"
],
"homepage": "https://github.com/nunofgs/mask-xml",
"bugs": {
"url": "https://github.com/nunofgs/mask-xml/issues"
},
"license": "SEE LICENSE IN LICENSE",
"main": "./src/index.js",
"repository": {
"type": "git",
"url": "https://github.com/nunofgs/mask-xml.git"
},
"scripts": {
"changelog": "github-changelog-generator --owner=nunofgs --repo=mask-xml --future-release=v$npm_package_version > CHANGELOG.md",
"lint": "eslint .",
"test": "jest",
"version": "npm run changelog && git add -A CHANGELOG.md"
},
"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$"
}
}