-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
63 lines (63 loc) · 1.54 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
{
"name": "o2diff",
"version": "5.0.0",
"description": "Returns the difference between two objects",
"main": "dist/index.js",
"browser": "dist/index.js",
"typings": "dist/index.d.ts",
"files": [
"dist/**"
],
"engines": {
"node": ">=18"
},
"scripts": {
"prepublish": "pnpm build",
"build": "pnpm rollup -c",
"prettify": "prettier --write \"src/**/*.ts\" \"test/**/*.ts\"",
"format": "pnpm lint && pnpm prettify",
"lint": "eslint",
"test": "NODE_ENV=test jest",
"coverage": "NODE_ENV=test jest --coverage",
"coverage:codecov": "pnpm coverage"
},
"keywords": [
"object",
"diff",
"difference",
"compare",
"changes"
],
"author": "Alexander Mac",
"license": "MIT",
"homepage": "https://github.com/AlexanderMac/o2diff",
"repository": {
"type": "git",
"url": "https://github.com/AlexanderMac/o2diff"
},
"bugs": {
"url": "https://github.com/AlexanderMac/o2diff/issues"
},
"dependencies": {
"lodash": "^4.17.21"
},
"devDependencies": {
"@eslint/js": "^9.19.0",
"@rollup/plugin-typescript": "^12.1.2",
"@trivago/prettier-plugin-sort-imports": "^5.2.2",
"@types/jest": "^29.5.14",
"@types/lodash": "^4.17.15",
"@types/node": "^22.12.0",
"eslint": "^9.19.0",
"globals": "^15.14.0",
"jest": "^29.7.0",
"prettier": "^3.4.2",
"rollup": "^4.32.1",
"rollup-plugin-dts": "^6.1.1",
"ts-jest": "^29.2.5",
"ts-node": "^10.9.2",
"tslib": "^2.8.1",
"typescript": "^5.7.3",
"typescript-eslint": "^8.22.0"
}
}