This repository has been archived by the owner on Feb 2, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
74 lines (74 loc) · 1.76 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
64
65
66
67
68
69
70
71
72
73
74
{
"name": "@vangware/test",
"description": "✅ Equality test with enforced readability",
"version": "10.3.24",
"author": {
"email": "hello@vangware.com",
"name": "Vangware",
"url": "https://vangware.com"
},
"bin": "./dist/bin.js",
"bugs": {
"email": "issues@vangware.com",
"url": "https://github.com/vangware/test/issues"
},
"dependencies": {
"@vangware/ansi": "^6.3.26",
"@vangware/types": "^6.2.7",
"deep-diff": "^1.0.2"
},
"devDependencies": {
"@types/deep-diff": "^1.0.2",
"@types/node": "20.6.0",
"@vangware/configs": "^6.1.1",
"c8": "^8.0.1",
"eslint": "^8.49.0",
"npm-run-all": "^4.1.5",
"prettier": "^3.0.3",
"simple-git-hooks": "^2.9.0",
"tsx": "^3.12.10",
"typescript": "5.2.2"
},
"engines": {
"node": ">=20",
"pnpm": ">=8"
},
"exports": {
".": "./dist/index.js",
"./*": "./dist/*"
},
"files": [
"dist"
],
"homepage": "https://test.vangware.com",
"keywords": [
"legibility",
"legible",
"test",
"testing",
"tests",
"vangware"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/vangware/test.git"
},
"scripts": {
"clean": "rimraf ./dist",
"compile": "tsc --project tsconfig.dist.json",
"lint": "eslint {src,tests}",
"lint:fix": "eslint {src,tests} --fix",
"pre-compile": "tsc --noemit --project tsconfig.dist.json",
"prepare": "simple-git-hooks",
"prepublishOnly": "run-s --print-label compile prettify",
"prettify": "prettier --ignore-path=.prettierignore --log-level=warn --write './dist/**/*.{js,ts}'",
"test": "c8 node --loader tsx --no-warnings ./src/bin.ts"
},
"sideEffects": false,
"simple-git-hooks": {
"pre-push": "$(pwd)/node_modules/.bin/run-s --print-label clean pre-compile lint test"
},
"type": "module",
"types": "./dist/index.d.ts"
}