-
Notifications
You must be signed in to change notification settings - Fork 25
/
package.json
65 lines (65 loc) · 1.46 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
65
{
"name": "clean-deep",
"version": "3.4.0",
"description": "Remove falsy, empty or nullable values from objects",
"keywords": [
"clean",
"clean-deep",
"deep"
],
"homepage": "https://github.com/nunofgs/clean-deep",
"bugs": {
"url": "https://github.com/nunofgs/clean-deep/issues"
},
"license": "MIT",
"author": {
"name": "Nuno Sousa",
"email": "[email protected]"
},
"main": "./src/index.js",
"repository": {
"type": "git",
"url": "https://github.com/nunofgs/clean-deep.git"
},
"scripts": {
"changelog": "github-changelog-generator --owner=nunofgs --repo=clean-deep --future-release=v$npm_package_version > CHANGELOG.md",
"lint": "eslint .",
"test": "jest",
"version": "yarn changelog && git add -A CHANGELOG.md"
},
"dependencies": {
"lodash.isempty": "^4.4.0",
"lodash.isplainobject": "^4.0.6",
"lodash.transform": "^4.6.0"
},
"devDependencies": {
"@uphold/github-changelog-generator": "^0.8.1",
"eslint-config-uphold": "^1.0.0",
"eslint": "^6.2.2",
"husky": "^3.0.4",
"jest": "^24.9.0",
"lint-staged": "^9.2.5"
},
"engines": {
"node": ">=4"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.js": [
"yarn lint --fix",
"git add"
]
},
"jest": {
"collectCoverage": true,
"modulePaths": [
"<rootDir>"
],
"testEnvironment": "node",
"testRegex": "test/.*\\.test.js$"
}
}