-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
93 lines (93 loc) · 3.4 KB
/
Copy pathpackage.json
File metadata and controls
93 lines (93 loc) · 3.4 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
{
"name": "smoque",
"version": "0.1.2",
"description": "Script-first smoke tests for real project behavior.",
"author": "zsumz <shawn@zsumz.com>",
"repository": {
"type": "git",
"url": "git+https://github.com/zsumz/smoque.git"
},
"homepage": "https://github.com/zsumz/smoque#readme",
"bugs": {
"url": "https://github.com/zsumz/smoque/issues"
},
"type": "module",
"bin": {
"smoque": "dist/cli/main.js"
},
"exports": {
".": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"./plugin": {
"types": "./dist/plugin.d.ts",
"default": "./dist/plugin.js"
}
},
"types": "./dist/index.d.ts",
"files": [
"LICENSE",
"README.md",
"smoque-logo.svg",
"dist/**/*.js",
"dist/**/*.d.ts"
],
"packageManager": "npm@11.19.0",
"engines": {
"node": ">=22.18.0"
},
"keywords": [
"smoke-test",
"testing",
"typescript",
"cli",
"ci",
"integration-testing"
],
"publishConfig": {
"access": "public"
},
"sallyport": {
"requiredStatusChecks": [
"Validate Linux / Node 22.x",
"Validate Linux / Node 24.x",
"Validate Linux / Node 26.x",
"Validate macOS / Node 22.x",
"Windows build contract (experimental)",
"Coverage gate"
]
},
"scripts": {
"clean": "node scripts/clean-dist.mts",
"build": "npm run clean && tsc -p tsconfig.json",
"smoke": "npm run build && node dist/cli/main.js run smoke/",
"smoke:examples": "npm run build && node dist/cli/main.js run examples/runnable/",
"smoke:list": "npm run build && node dist/cli/main.js list smoke/",
"api:update": "node scripts/architecture/contract/update-public-api.mts",
"architecture:check": "node scripts/architecture/check.mts",
"typecheck": "npm run build && tsc -p scripts/tsconfig.json && tsc -p smoke/tsconfig.json && tsc -p examples/tsconfig.json && tsc -p test/architecture/tsconfig.json",
"typecheck:tests": "tsc -p test/tsconfig.json && tsc -p test/integration/smoke-runner/tsconfig.json",
"test": "npm run build && npm run typecheck:tests && vitest run",
"coverage": "npm run build && vitest run --coverage",
"coverage:check": "npm run build && SMOQUE_COVERAGE_CHECK=1 vitest run --coverage",
"lint": "eslint src scripts smoke examples test",
"archive:source": "git archive --format=tar.gz --output smoque-source.tgz HEAD",
"bin:local": "npm run build && node scripts/build-local-bin.mts",
"prepack": "npm run build",
"release:check": "npm run validate && npm run coverage:check && npm pack --dry-run --json",
"release:smoke": "node scripts/release/smoke-release-package.mts",
"validate:compat": "npm run typecheck && npm run lint && npm run architecture:check && npm test && npm run smoke:list && node dist/cli/main.js run smoke/ --skip-tag package && npm run smoke:examples && npm pack --dry-run --json",
"validate": "npm run typecheck && npm run lint && npm run architecture:check && npm test && npm run smoke:list && npm run smoke && npm run smoke:examples && npm pack --dry-run --json",
"prepublishOnly": "node -e \"throw new Error('Publish smoque only through .github/workflows/sallyport.yml.')\""
},
"devDependencies": {
"@types/node": "^22.0.0",
"@vitest/coverage-v8": "^4.1.9",
"eslint": "^10.6.0",
"eslint-config-rubric": "^0.1.0-alpha.0",
"typescript": "^5.8.0",
"vitest": "^4.1.9"
},
"license": "MIT"
}