-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
64 lines (64 loc) · 1.69 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
{
"name": "@skyleague/therefore-sfn",
"version": "1.0.0",
"description": "Therefore the JSON TypeScript toolkit adapted for AWS StepFunctions.",
"repository": {
"type": "git",
"url": "https://github.com/skyleague/therefore-sfn.git"
},
"license": "MIT",
"author": "SkyLeague Technologies B.V. <technologies@skyleague.io> (https://skyleague.io)",
"type": "module",
"exports": {
".": "./.dist/index.js",
"./package.json": "./package.json",
"./*.js": "./.dist/*.js"
},
"types": "./.dist/index.d.ts",
"bin": {
"therefore-sfn": "./bin/run.js"
},
"files": [
"bin",
".dist",
"package.json"
],
"scripts": {
"build": "node --import tsx/esm build.config.ts",
"build:docs": "npx typedoc",
"check:coverage": "vitest run --coverage=true",
"check:project": "node-standards lint",
"check:types": "tsc -p tsconfig.json",
"format": "prettier \"**/*.{ts,js,json,yml,yaml,md}\" --write",
"lint": "eslint \"./{src,test,typings}/**/*.ts\" --cache --no-eslintrc --config .eslintrc.cjs",
"lint:fix": "npm run lint -- --fix",
"package": "rm -rf .dist && npm run build",
"prepare": "husky || true",
"test": "vitest run"
},
"dependencies": {
"ajv": "^8.12.0",
"tslib": "^2.6.2",
"yargs": "^17.7.2"
},
"devDependencies": {
"@skyleague/node-standards": "^5.1.6",
"@skyleague/therefore": "^4.1.1",
"@types/yargs": "^17.0.32",
"typescript": "^5.3.3"
},
"engines": {
"node": ">=20"
},
"publishConfig": {
"access": "public",
"provenance": true,
"registry": "https://registry.npmjs.org"
},
"node-standards": {
"extends": "yargs-cli",
"ignorePatterns": [
"bin/run.js"
]
}
}