-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
43 lines (43 loc) · 1.07 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
{
"name": "defaults-deep-safe",
"version": "1.0.0",
"repository": {
"type": "git",
"url": "https://github.com/ruimarinho/defaults-deep-safe.git"
},
"description": "A deep version of _.defaults, safe by default.",
"keywords": [
"_",
"_.defaults",
"clone",
"deep",
"defaults",
"lodash",
"merge"
],
"author": {
"name": "Rui Marinho",
"email": "ruipmarinho@gmail.com"
},
"homepage": "https://github.com/ruimarinho/defaults-deep-safe",
"bugs": {
"url": "https://github.com/ruimarinho/defaults-deep-safe/issues"
},
"license": "MIT",
"scripts": {
"changelog": "github-changelog-generator --future-release=$npm_package_version --future-release-tag=v$npm_package_version > CHANGELOG.md",
"test": "mocha test/*_test.js --require should",
"version": "npm run changelog && git add -A CHANGELOG.md"
},
"dependencies": {
"lodash": "^4.17.10"
},
"devDependencies": {
"@uphold/github-changelog-generator": "^0.7.0",
"mocha": "^5.2.0",
"should": "^13.2.3"
},
"engines": {
"node": ">=6"
}
}