-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathpackage.json
66 lines (66 loc) · 1.67 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
{
"name": "websequencediagrams",
"description": "Interface to websequencediagrams.com",
"version": "5.0.0",
"author": "Joe Hildebrand <[email protected]>",
"contributors": [
"Ed Crump <[email protected]> (https://github.com/icedawn)",
"Michael Callaghan <[email protected]> (https://walkingriver.com)"
],
"homepage": "https://github.com/hildjj/node-websequencediagrams",
"repository": {
"type": "git",
"url": "git://github.com/hildjj/node-websequencediagrams"
},
"directories": {
"bin": "bin",
"lib": "lib"
},
"main": "lib/wsd",
"keywords": [
"uml",
"sequence diagram",
"sequence",
"diagram",
"websequencediagrams",
"websequencediagrams.com"
],
"license": "Apache-2.0",
"scripts": {
"test": "ava",
"lint": "eslint .",
"coverage": "c8 npm test",
"nock": "rm -f test/fixtures/wsd.ava.js.json && NOCK_BACK_MODE=record npx ava --serial test/wsd.ava.js",
"release": "npm version patch && git push --follow-tags && npm publish"
},
"devDependencies": {
"@cto.af/eslint-config": "^5.1.1",
"@types/node": "^22.10.2",
"ava": "^6.2.0",
"c8": "10.1.3",
"eslint": "^9.16.0",
"eslint-plugin-jsdoc": "^50.6.1",
"eslint-plugin-markdown": "^5.1.0",
"eslint-plugin-node": "^11.1.0",
"nock": "14.0.0-beta.19",
"tmp-promise": "^3.0.3",
"typescript": "5.7.2"
},
"dependencies": {
"yargs": "^17.7.2"
},
"pnpm": {
"overrides": {
"micromatch": "^4.0.8",
"cross-spawn": "^7.0.6"
}
},
"overrides": {
"micromatch": "^4.0.8",
"cross-spawn": "^7.0.6"
},
"packageManager": "[email protected]",
"engines": {
"node": ">=18.8"
}
}