-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 1.78 KB
/
package.json
File metadata and controls
70 lines (70 loc) · 1.78 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
60
61
62
63
64
65
66
67
68
69
70
{
"name": "sebastianjs",
"version": "0.0.3",
"description": "SebastianJS is a mermaid wrapper designed to make it able to perform server-side svg renderers without needing a headless browser.",
"type": "module",
"main": "src/index.js",
"scripts": {
"test": "node --experimental-vm-modules ./node_modules/jest/bin/jest.js --runInBand",
"cli": "node ./bin/sebastianjs",
"fetch:samples": "node ./scripts/fetch-mermaid-demos.mjs",
"build:site": "node ./scripts/build-site.mjs",
"benchmark": "node ./scripts/benchmark.mjs",
"deviation": "node ./scripts/deviation-suite.mjs"
},
"keywords": [
"mermaid",
"server-side",
"svg"
],
"author": "Adrien Nelis",
"license": "MIT",
"bin": {
"sebastianjs": "bin/sebastianjs"
},
"files": [
"src/",
"bin/",
"README.md",
"LICENSE"
],
"repository": {
"type": "git",
"url": "git+https://github.com/creadri/sebastianjs.git"
},
"homepage": "https://github.com/creadri/sebastianjs#readme",
"bugs": {
"url": "https://github.com/creadri/sebastianjs/issues"
},
"publishConfig": {
"access": "public"
},
"dependencies": {
"canvas": ">=2.11.2",
"dompurify": ">=3.2.6",
"jsdom": ">=24.1.0",
"mermaid": ">=10.11.10"
},
"devDependencies": {
"@babel/core": ">=7.28.3",
"@babel/preset-env": ">=7.28.3",
"@mermaid-js/mermaid-cli": "^11.9.0",
"babel-jest": ">=30.1.2",
"jest": ">=29.7.0",
"jest-environment-jsdom": ">=30.1.2"
},
"jest": {
"testEnvironment": "node",
"transform": {},
"setupFiles": [
"./jest.setup.js"
],
"transformIgnorePatterns": [],
"testPathIgnorePatterns": [
"__tests__/samples.test.js"
],
"moduleNameMapper": {
"^dompurify$": "<rootDir>/src/shims/dompurify.js"
}
}
}