-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
101 lines (101 loc) · 2.56 KB
/
package.json
File metadata and controls
101 lines (101 loc) · 2.56 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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
{
"name": "ctrf",
"version": "0.2.0",
"description": "CTRF reference implementation in TypeScript for creating and validating CTRF documents.",
"type": "module",
"main": "dist/index.cjs",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"import": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"require": {
"types": "./dist/index.d.cts",
"default": "./dist/index.cjs"
}
}
},
"bin": {
"ctrf": "dist/cli/cli.js"
},
"engines": {
"node": ">=20.19.0"
},
"scripts": {
"build": "tsup && cp src/ctrf-schema-*.json dist/",
"build:check": "tsc -p . --noEmit",
"build:watch": "tsup --watch",
"clean": "rm -rf dist && rm -rf coverage && rm -rf ctrf",
"test": "vitest run",
"test:coverage": "vitest run --coverage",
"lint": "eslint . --ext .ts --fix",
"lint:check": "eslint . --ext .ts",
"format": "prettier --write .",
"format:check": "prettier --check .",
"docs": "typedoc",
"docs:watch": "typedoc --watch",
"update-readme": "npx tsx update-readme.ts",
"attw": "npm pack && attw ctrf-*.tgz && rm ctrf-*.tgz",
"all": "npm run build:check && npm run test:coverage && npm run lint && npm run format && npm run docs && npm run build"
},
"files": [
"dist/",
"types/",
"src/ctrf-schema-*.json",
"README.md"
],
"repository": {
"type": "git",
"url": "git+https://github.com/ctrf-io/ctrf-js.git"
},
"publishConfig": {
"access": "public",
"provenance": true
},
"homepage": "https://ctrf.io",
"author": "Matthew Poulton-White",
"license": "MIT",
"security": {
"email": "security@ctrf.io",
"url": "https://github.com/ctrf-io/security/blob/main/SECURITY.md"
},
"keywords": [
"test",
"testing",
"ctrf",
"reporter",
"report",
"json",
"standard",
"typescript",
"reference-implementation",
"test-results",
"validation",
"schema"
],
"dependencies": {
"ajv": "^8.17.1",
"ajv-formats": "^3.0.1",
"glob": "^13.0.0",
"yargs": "^18.0.0"
},
"devDependencies": {
"@arethetypeswrong/cli": "^0.18.2",
"@d2t/vitest-ctrf-json-reporter": "^1.2.0",
"@eslint/js": "^10.0.1",
"@types/node": "^25.5.0",
"@types/yargs": "^17.0.32",
"@vitest/coverage-v8": "^4.0.18",
"eslint": "^10.0.2",
"prettier": "^3.5.3",
"tsup": "^8.5.1",
"typedoc": "^0.28.9",
"typedoc-plugin-markdown": "^4.8.0",
"typescript": "^5.8.3",
"typescript-eslint": "^8.57.0",
"vitest": "^4.0.18"
}
}