-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1.42 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
{
"name": "json-glue",
"version": "1.0.0",
"description": "A lightweight utility to recursively merge two JSON objects in TypeScript. Supports replacing primitive values, arrays, and combining objects deeply",
"main": "dist/index.js",
"module": "dist/index.js",
"typings": "dist/index.d.ts",
"scripts": {
"prebuild": "rm -rf dist",
"build": "tsc",
"lint": "eslint 'src/**/*.ts'",
"lint:fix": "eslint 'src/**/*.ts' --fix",
"test": "jest --config jest.config.json",
"test:coverage": "jest --config jest.config.json --coverage",
"release": "semantic-release --branches main",
"prepack": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/chathurabuddi/json-glue.git"
},
"keywords": [
"json",
"object",
"merge",
"ts"
],
"author": "chathurabuddi <[email protected]> (http://chathurabuddi.lk/)",
"license": "ISC",
"bugs": {
"url": "https://github.com/chathurabuddi/json-glue/issues"
},
"homepage": "https://github.com/chathurabuddi/json-glue#readme",
"devDependencies": {
"@types/jest": "^29.5.12",
"@typescript-eslint/eslint-plugin": "^8.4.0",
"@typescript-eslint/parser": "^8.4.0",
"eslint": "^9.10.0",
"eslint-plugin-prettier": "^5.2.1",
"globals": "^15.9.0",
"jest": "^29.7.0",
"prettier": "^3.3.3",
"semantic-release": "^24.1.0",
"ts-jest": "^29.2.5",
"typescript": "^5.5.4"
}
}