-
Notifications
You must be signed in to change notification settings - Fork 31
/
package.json
57 lines (57 loc) · 1.41 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
{
"name": "gedcom",
"version": "3.0.0",
"description": "a simple and readable gedcom parser",
"source": "index.ts",
"main": "dist/index.js",
"module": "dist/index.m.js",
"esmodule": "dist/index.modern.js",
"main:umd": "dist/index.umd.js",
"unpkg": "dist/index.umd.js",
"bin": {
"gedcom": "dist/cli.js"
},
"files": [
"dist"
],
"scripts": {
"test": "tap",
"doc": "typedoc --plugin typedoc-plugin-markdown --readme none index.ts",
"release": "standard-version",
"prerelease": "npm run build",
"build": "microbundle && microbundle -i cli.ts -o dist/cli.js -f cjs && npm run doc"
},
"keywords": [
"gedcom",
"format",
"geneaology"
],
"author": "Tom MacWright",
"license": "ISC",
"dependencies": {
"@types/graphlib": "^2.1.7",
"@types/graphlib-dot": "^0.6.1",
"@types/meow": "^5.0.0",
"@types/tap": "^14.10.1",
"@types/unist": "^2.0.3",
"get-stdin": "^8.0.0",
"graphlib": "^2.1.8",
"graphlib-dot": "^0.6.4",
"meow": "^9.0.0",
"standard-version": "^9.1.0",
"tslib": "^2.1.0",
"unist-util-remove": "^2.0.1",
"unist-util-visit-parents": "^3.1.1"
},
"devDependencies": {
"microbundle": "^0.13.0",
"tap": "^14.11.0",
"typedoc": "^0.20.14",
"typedoc-plugin-markdown": "^3.4.0",
"typescript": "^4.1.3"
},
"repository": {
"type": "git",
"url": "git@github.com:tmcw/parse-gedcom.git"
}
}