-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 1.21 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
{
"name": "graphdown",
"version": "0.4.0",
"description": "GraphDown converts ASCII diagrams to SVG",
"author": "Frédéric Bonnet <fredericbonnet@free.fr>",
"homepage": "https://github.com/fredericbonnet/graphdown",
"license": "BSD-3-Clause",
"keywords": [
"documentation",
"markdown",
"svg"
],
"repository": {
"type": "git",
"url": "git+https://github.com/fredericbonnet/graphdown.git"
},
"main": "./dist/index.cjs",
"exports": {
"require": "./dist/index.cjs",
"import": "./dist/index.mjs",
"browser": "./dist/index.js"
},
"directories": {
"lib": "dist"
},
"files": [
"dist"
],
"types": "./dist/index.d.ts",
"scripts": {
"start": "snowpack dev",
"demo": "http-server demo -p 12345 -o",
"prebuild": "rm -rf dist",
"build": "node scripts/build.js",
"prepack": "package-check",
"test": "mocha --require esm",
"test:watch": "mocha --watch --require esm"
},
"devDependencies": {
"@skypack/package-check": "^0.2.2",
"chai": "^4.2.0",
"esbuild": "^0.8.30",
"esm": "^3.2.25",
"http-server": "^0.12.3",
"mocha": "^8.2.1",
"recursive-copy": "^2.0.11",
"snowpack": "^2.18.5"
},
"dependencies": {}
}