-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 1.6 KB
/
package.json
File metadata and controls
70 lines (70 loc) · 1.6 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
{
"name": "@alkemist/compare-engine",
"version": "1.3.7",
"description": "Comparison engine",
"main": "lib/index.min.mjs",
"type": "module",
"types": "lib/index.d.ts",
"module": "lib/index.min.mjs",
"private": false,
"scripts": {
"dist": "rm -rf dist/* && tsc --project tsconfig.dist.json",
"def": "rm -rf lib/* && tsc --project tsconfig.def.json",
"prepublishOnly": "yarn test && npm run dist && npm run def && webpack",
"test": "jest"
},
"files": [
"lib/*"
],
"repository": {
"type": "git",
"url": "git+https://github.com/alkemist/compare-engine.git"
},
"publishConfig": {
"registry": "https://registry.npmjs.org/"
},
"engines": {
"node": ">=16.0.0"
},
"keywords": [
"typescript",
"compare",
"comparison",
"equal",
"updated",
"removed",
"engine",
"json",
"object",
"diff",
"difference",
"type",
"class",
"change"
],
"author": "Jaden ACHAIN",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/alkemist/compare-engine/issues"
},
"homepage": "https://github.com/alkemist/compare-engine#readme",
"devDependencies": {
"@types/jest": "^29.5.5",
"babel-jest": "^29.7.0",
"jest": "^29.5.0",
"jest-cli": "^29.5.0",
"jest-extended": "^4.0.0",
"jest-preset-angular": "^13.1.2",
"terser-webpack-plugin": "^5.3.9",
"ts-jest": "^29.1.1",
"ts-loader": "^9.4.3",
"tsc": "^2.0.4",
"tslib": "^2.5.3",
"typescript": "^5.2.2",
"webpack": "^5.85.0",
"webpack-cli": "^5.1.1"
},
"dependencies": {
"@alkemist/smart-tools": "^1.1.23"
}
}