-
Notifications
You must be signed in to change notification settings - Fork 18
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.5 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 1.5 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
{
"name": "websequencediagrams",
"description": "Interface to websequencediagrams.com",
"version": "6.0.5",
"author": "Joe Hildebrand <joe-github@cursive.net>",
"contributors": [
"Ed Crump <ed.crump@gmail.com> (https://github.com/icedawn)",
"Michael Callaghan <michael@walkingriver.com> (https://walkingriver.com)"
],
"homepage": "https://github.com/hildjj/node-websequencediagrams",
"repository": {
"type": "git",
"url": "git://github.com/hildjj/node-websequencediagrams.git"
},
"directories": {
"bin": "bin",
"lib": "lib"
},
"files": [
"bin",
"lib"
],
"main": "lib/wsd",
"keywords": [
"uml",
"sequence diagram",
"sequence",
"diagram",
"websequencediagrams",
"websequencediagrams.com"
],
"license": "Apache-2.0",
"scripts": {
"test": "node --test",
"lint": "eslint .",
"coverage": "c8 npm test",
"nock": "rm -f test/fixtures/wsd.test.js.json && NOCK_BACK_MODE=record npx ava --serial test/wsd.test.js",
"build": "npm run lint && npm run coverage"
},
"devDependencies": {
"@cto.af/eslint-config": "^6.2.5",
"@eslint/markdown": "^7.5.1",
"@stylistic/eslint-plugin": "^5.10.0",
"@types/node": "^25.5.0",
"eslint": "^9.39.2",
"eslint-plugin-jsdoc": "^62.8.0",
"nock": "^14.0.11",
"superc8": "~12.3.1",
"tmp-promise": "^3.0.3",
"typescript": "^5.9.3"
},
"dependencies": {
"yargs": "^18.0.0"
},
"packageManager": "pnpm@10.32.1",
"engines": {
"node": ">=20"
}
}