-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.26 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 1.26 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
{
"name": "@objectwow/join",
"version": "0.4.2",
"license": "MIT",
"description": "Perform a deep join of arrays of objects using UIDs.",
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/objectwow/join.git"
},
"homepage": "https://github.com/objectwow/join#readme",
"keywords": [
"object",
"join",
"@objectwow/join",
"array",
"merge",
"deep"
],
"author": "Nguyen Van Tuan",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"scripts": {
"build": "tsc",
"prepublishOnly": "npm run test && npm run build",
"test": "jest",
"test:cov": "jest --coverage"
},
"devDependencies": {
"@types/jest": "^29.5.13",
"@types/node": "22.7.5",
"benchmark": "^2.1.4",
"jest": "29.7.0",
"ts-jest": "^29.2.5",
"typescript": "5.6.3"
},
"jest": {
"verbose": true,
"moduleFileExtensions": [
"js",
"json",
"ts"
],
"moduleNameMapper": {},
"rootDir": ".",
"testRegex": ".*\\.spec\\.ts$",
"transform": {
"^.+\\.(t|j)s$": "ts-jest"
},
"collectCoverageFrom": [
"./src/**/*.(t|j)s",
"!**/index.ts"
],
"coverageDirectory": "./coverage",
"testEnvironment": "node"
}
}