-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
57 lines (57 loc) · 1.54 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
{
"name": "asl-puml",
"version": "0.21.0",
"description": "Generates a plant uml file from a valid JSON ASL file",
"main": "./dist/index.js",
"bin": {
"asl-puml": "./dist/asl-puml-cli.js"
},
"scripts": {
"build": "npm run generate && npx tsc",
"generate": "rimraf src/generated && ./node_modules/.bin/json2ts -i src/lib/config-schema.json -o src/lib/generated/config.d.ts",
"lint": "npx eslint . --max-warnings 0 --ext ts",
"test": "npm run build && npx jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/massfords/asl-puml.git"
},
"keywords": [
"asl",
"amazon states language",
"aws",
"step functions",
"state machine",
"plantuml",
"diagram"
],
"author": "Mark Ford",
"license": "MIT",
"bugs": {
"url": "https://github.com/massfords/asl-puml/issues"
},
"homepage": "https://github.com/massfords/asl-puml#readme",
"devDependencies": {
"@types/jest": "^28.1.8",
"@typescript-eslint/eslint-plugin": "^5.62.0",
"@typescript-eslint/parser": "^5.62.0",
"eslint": "^8.47.0",
"eslint-config-prettier": "^8.10.0",
"eslint-plugin-jest": "^26.9.0",
"eslint-plugin-prettier": "^4.2.1",
"jest": "^28.1.3",
"json-schema-to-typescript": "^11.0.5",
"prettier": "^2.8.8",
"rimraf": "^3.0.2",
"ts-jest": "^28.0.8",
"ts-node": "^10.9.1",
"typescript": "^5.1.6"
},
"dependencies": {
"ajv": "^8.12.0",
"asl-validator": "^3.8.0",
"commander": "^9.5.0",
"jsonpath-plus": "^7.2.0",
"word-wrap": "1.2.4"
}
}