forked from nunofgs/clean-deep
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
70 lines (70 loc) · 1.99 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
66
67
68
69
70
{
"name": "clean-deep",
"version": "2.0.1",
"description": "Remove falsy, empty or nullable values from objects",
"keywords": [
"clean",
"clean-deep",
"deep"
],
"homepage": "https://github.com/seegno/clean-deep",
"bugs": {
"url": "https://github.com/seegno/clean-deep/issues"
},
"license": "MIT",
"author": {
"name": "Nuno Sousa",
"email": "nfs@seegno.com",
"url": "https://seegno.com"
},
"main": "./dist/index.js",
"repository": {
"type": "git",
"url": "https://github.com/seegno/clean-deep.git"
},
"scripts": {
"changelog": "github_changelog_generator --no-issues --header-label='# Changelog' --future-release=v$npm_config_future_release && sed -i '' -e :a -e '$d;N;2,4ba' -e 'P;D' CHANGELOG.md",
"coverage": "nyc --reporter=html --reporter=text npm test",
"lint": "eslint src test",
"prepublish": "npm run transpile",
"test": "NODE_ENV=test mocha $npm_package_options_mocha",
"transpile": "rm -rf dist/* && babel src --out-dir dist",
"version": "npm run changelog --future-release=$npm_package_version && npm run transpile && git add -A CHANGELOG.md dist"
},
"dependencies": {
"lodash.isempty": "^4.4.0",
"lodash.isplainobject": "^4.0.6",
"lodash.transform": "^4.6.0"
},
"devDependencies": {
"babel-cli": "^6.16.0",
"babel-core": "^6.16.0",
"babel-eslint": "^6.1.2",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-preset-es2015-node4": "^2.1.0",
"eslint": "^3.6.1",
"eslint-config-seegno": "^6.0.0",
"mocha": "^3.1.0",
"nyc": "^8.3.0",
"pre-commit": "^1.0.10",
"should": "^11.1.0"
},
"engines": {
"node": ">=4"
},
"options": {
"changelog": "-o seegno -r clean-deep --only-pulls --use-commit-body --title 'Changelog' --date-format '/ YYYY-MM-DD'",
"mocha": "--compilers js:babel-core/register --recursive test"
},
"pre-commit": {
"run": [
"lint"
]
},
"nyc": {
"include": [
"src/"
],
"report-dir": "./coverage"
}
}