-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 1.73 KB
/
package.json
File metadata and controls
76 lines (76 loc) · 1.73 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
{
"name": "object-collider",
"version": "1.0.4",
"description": "Merge plain old objects without source modifications and optionally provide custom merge behavior per specific child path.",
"main": "dist/index.js",
"scripts": {
"build": "rimraf ./dist/ && tsc",
"test": "rimraf ./coverage/ && nyc --reporter=html --reporter=text mocha",
"lint": "eslint 'src/**/*.ts'",
"snyk-protect": "snyk protect",
"prepare": "husky install"
},
"author": "FireBlink LTD",
"license": "MIT",
"dependencies": {},
"devDependencies": {
"@testdeck/mocha": "^0.3.3",
"@types/mocha": "10.0.6",
"@types/node": "20.10.1",
"@typescript-eslint/eslint-plugin": "^6.13.1",
"@typescript-eslint/parser": "^6.13.1",
"eslint": "^8.54.0",
"husky": "8.0.3",
"lint-staged": "15.1.0",
"mocha": "10.2.0",
"mochawesome": "7.1.3",
"nyc": "15.1.0",
"rimraf": "5.0.5",
"snyk": "^1.1259.0",
"source-map-support": "0.5.21",
"ts-node": "^10.9.1",
"typescript": "5.3.2"
},
"keywords": [
"fireblink",
"object",
"merge",
"collide",
"recursive",
"path",
"modify",
"extend"
],
"contributors": [
{
"name": "Vladyslav Tkachenko",
"email": "vlad@fireblink.com"
}
],
"repository": {
"type": "git",
"url": "git+https://github.com/FireBlinkLTD/object-collider.git"
},
"nyc": {
"cache": false,
"extension": [
".ts"
],
"exclude": [
"src/**/index.ts",
"src/interfaces/*.ts",
"**/*.d.ts",
"coverage/**"
],
"check-coverage": true,
"per-file": true,
"lines": 100,
"statements": 100,
"functions": 100,
"branches": 100,
"include": [
"src",
"dist/src"
]
}
}