-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.33 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.33 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
{
"name": "sat-compare",
"version": "0.3.0",
"description": "Universal comparison library",
"scripts": {
"test": "mocha ./specs/**/*.spec.ts --require ts-node/register --timeout 30000",
"lint:cjs": "oxlint --tsconfig tsconfig.json",
"lint:esm": "oxlint --tsconfig tsconfig.esm.json",
"lint": "npm run lint:cjs && npm run lint:esm",
"tsc:cjs": "tsc -p tsconfig.json",
"tsc:esm": "tsc -p tsconfig.esm.json",
"tsc": "rm -rf ./built && npm run tsc:cjs && npm run tsc:esm"
},
"main": "./built/cjs/index.js",
"exports": {
".": {
"require": "./built/cjs/index.js",
"import": "./built/esm/index.js"
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/Simple-Automation-Testing/sat-compare.git"
},
"keywords": [
"compare item to pattern",
"compare",
"data comparison"
],
"author": "Potapov Dmitriy",
"license": "MIT",
"bugs": {
"url": "https://github.com/Simple-Automation-Testing/sat-compare/issues"
},
"homepage": "https://github.com/Simple-Automation-Testing/sat-compare#readme",
"devDependencies": {
"@types/mocha": "^10.0.1",
"@types/node": "^22.9.3",
"assertior": "^0.0.28",
"mocha": "^10.2.0",
"oxlint": "^0.16.6",
"ts-node": "^10.9.1",
"typescript": "^5.0.4"
},
"dependencies": {
"sat-utils": "^3.0.2"
}
}