This repository was archived by the owner on Apr 20, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
128 lines (128 loc) · 3.74 KB
/
package.json
File metadata and controls
128 lines (128 loc) · 3.74 KB
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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
{
"name": "deep-confluence",
"version": "1.2.4",
"description": "Merge objects—deeply 🖤",
"main": "dist/deep-confluence.es.js",
"module": "dist/deep-confluence.es.js",
"unpkg": "dist/deep-confluence.min.js",
"scripts": {
"chore:delete-changelog-branch": "if git show-ref --quiet refs/heads/chore-changelog; then git branch -D chore-changelog; fi",
"chore:branch": "git checkout -b chore-changelog",
"chore:changelog": "conventional-changelog -p eslint -i CHANGELOG.md -s -r 0",
"chore:setup-next-work": "git checkout master && yarn chore:delete-changelog-branch",
"chore:pr": "git add . && git commit -m '[chore] updates changelog' --no-verify && git push origin chore-changelog -f",
"chore:setup-changelog": "git checkout master && git pull",
"chore": "yarn chore:delete-changelog-branch && yarn chore:branch && yarn chore:changelog && yarn chore:pr && yarn chore:setup-next-work",
"prepush": "yarn build && yarn test",
"pre-commit-msg": "Echo 'Running pre-commit checks...' && exit 0",
"postpublish": "git tag $npm_package_version && git push origin --tags && yarn chore",
"release": "yarn lint && yarn build && yarn test && yarn report:coverage",
"report:coverage": "nyc report --reporter=lcov > coverage.lcov && codecov",
"lint": "eslint . --ext .ts --fix",
"lint:ci": "eslint .",
"start": "nvm i && yarn",
"test": "jest --coverage",
"build": "rollup --config rollup.config.ts",
"release-ready": "yarn lint && yarn build && yarn test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/yowainwright/deep-confluence.git"
},
"keywords": [
"deep",
"deep merge",
"deep extend",
"merge",
"object assignment",
"object assign"
],
"author": "Jeff Wainwright <yowainwright@gmail.com> (https://jeffry.in)",
"license": "MIT",
"bugs": {
"url": "https://github.com/yowainwright/deep-confluence/issues"
},
"homepage": "https://github.com/yowainwright/deep-confluence#readme",
"devDependencies": {
"@commitlint/cli": "^17.0.3",
"@commitlint/config-conventional": "^17.0.3",
"@commitlint/prompt": "^17.0.3",
"@heartly/eslint-config-typescript": "^1.0.4",
"@types/jest": "^27.0.0",
"codecov": "^3.1.0",
"commitizen": "^4.1.2",
"conventional-changelog-cli": "^2.0.11",
"eslint": "^8.1.0",
"husky": "^8.0.1",
"jest": "^25.5.3",
"lint-staged": "^13.0.3",
"prettier": "^2.0.5",
"rollup": "^1.27.13",
"rollup-plugin-babel": "^4.1.0",
"rollup-plugin-typescript2": "^0.34.0",
"rollup-plugin-uglify": "6.0.4",
"ts-jest": "^25.1.0",
"typescript": "^3.6.2"
},
"engines": {
"node": ">=10"
},
"files": [
"dist/deep-confluence.es.js",
"dist/deep-confluence.min.js",
"src/index.ts",
"types/index.d.ts",
"LICENSE"
],
"jest": {
"transform": {
".ts": "ts-jest"
},
"collectCoverageFrom": [
"src/**/*.{js,ts}"
],
"moduleFileExtensions": [
"js",
"ts"
],
"roots": [
"src"
],
"testEnvironment": "jsdom",
"testMatch": [
"<rootDir>/**/*.test.ts"
],
"testURL": "http://localhost"
},
"config": {
"commitizen": {
"path": "node_modules/@commitlint/prompt"
}
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
],
"rules": {
"header-max-length": [
2,
"always",
120
]
}
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS",
"post-checkout": "if [[ $HUSKY_GIT_PARAMS =~ 1$ ]]; then yarn; fi",
"post-merge": "yarn",
"post-rewrite": "yarn",
"pre-commit": "yarn lint-staged && yarn test"
}
},
"lint-staged": {
"*.ts": [
"yarn lint"
]
}
}