-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.35 KB
/
Copy pathpackage.json
File metadata and controls
53 lines (53 loc) · 1.35 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
{
"name": "@stepdown-dev/ts",
"version": "0.1.0",
"description": "TypeScript implementation of stepdown — a family of structural source analyzers enforcing top-down readability.",
"license": "Apache-2.0",
"author": "Stinnett Holdings LLC",
"homepage": "https://stepdown.dev/ts",
"repository": {
"type": "git",
"url": "git+https://github.com/stepdown-dev/stepdown-ts.git"
},
"bugs": {
"url": "https://github.com/stepdown-dev/stepdown-ts/issues"
},
"keywords": [
"stepdown",
"linter",
"static-analysis",
"code-organization",
"typescript"
],
"type": "module",
"engines": {
"node": ">=20"
},
"bin": {
"stepdown-ts": "bin/cli.mjs"
},
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"bin/",
"dist/",
"LICENSE",
"README.md"
],
"scripts": {
"build": "tsc",
"test": "npm run build && npm run test:built",
"test:built": "node --test tests/*.test.mjs",
"self-check": "node bin/cli.mjs src",
"fixture-check": "node bin/cli.mjs fixtures/positive",
"ci": "npm run build && npm run test:built && npm run self-check && npm run fixture-check",
"pack:check": "npm pack --dry-run",
"release:check": "npm run ci && npm run pack:check"
},
"dependencies": {
"typescript": "^5.4.0"
},
"devDependencies": {
"@types/node": "^25.9.2"
}
}