-
-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
76 lines (76 loc) · 1.96 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
65
66
67
68
69
70
71
72
73
74
75
76
{
"name": "quence",
"description": "Create sequence diagrams",
"version": "3.0.0",
"type": "module",
"main": "./lib/index.js",
"bin": {
"quence": "bin/quence.js"
},
"types": "types/lib/index.d.ts",
"homepage": "https://github.com/hildjj/quence",
"bugs": "https://github.com/hildjj/quence/issues",
"scripts": {
"lint": "eslint .",
"test": "c8 ava",
"snaps": "ava --update-snapshots",
"build": "peggy --format es lib/grammar.pegjs",
"release": "npm version patch && git push --follow-tags && npm publish",
"types": "tsc",
"version": "package-extract -s name homepage version && npm run types && npm run snaps && (cd examples && make clean && make) && (cd web && npm run clean && npm run build) && git add docs examples types test/snapshots package.js"
},
"repository": {
"type": "git",
"url": "git://github.com/hildjj/quence.git"
},
"keywords": [
"sequencediagram",
"sequence",
"diagram"
],
"license": "BSD-2-Clause",
"readmeFilename": "README.md",
"contributors": [
{
"name": "Cullen Jennings",
"email": "[email protected]"
},
{
"name": "Eric Rescorla",
"email": "[email protected]"
},
{
"name": "Martin Thomson",
"email": "[email protected]"
},
{
"name": "Joe Hildebrand",
"email": "[email protected]"
}
],
"dependencies": {
"commander": "12.1.0",
"pdfkit": "^0.15.0",
"xmlbuilder2": "3.1.1"
},
"devDependencies": {
"@cto.af/eslint-config": "^4.0.2",
"@peggyjs/coverage": "1.2.0",
"@types/node": "20.12.12",
"@types/pdfkit": "0.13.4",
"ava": "^6.1.3",
"c8": "^9.1.0",
"eslint": "^8.57.0",
"eslint-plugin-ava": "^14.0.0",
"eslint-plugin-node": "^11.1.0",
"execa": "^9.1.0",
"package-extract": "^1.0.3",
"peggy": "^4.0.2",
"typescript": "^5.4.5",
"typescript-eslint": "7.10.0"
},
"packageManager": "[email protected]",
"engines": {
"node": ">=18"
}
}