forked from PeWu/topola
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
58 lines (58 loc) · 1.62 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
{
"name": "topola",
"version": "2.4.0",
"description": "Topola – online genealogy visualization",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc",
"build-demo": "browserify src/index.ts -p [ tsify ] -o demo/bundle.js --s topola",
"watch": "watchify src/index.ts -p [ tsify ] -o demo/bundle.js --s topola --debug",
"server": "browser-sync start --server demo --files demo",
"start": "concurrently \"npm run watch\" \"npm run server\"",
"fix": "gts fix",
"test": "jasmine-ts \"tests/**/*.spec.ts\"",
"watch-test": "nodemon --ext ts --exec 'jasmine-ts \"tests/**/*.spec.ts\"'",
"predeploy": "npm run build-demo",
"deploy": "gh-pages -d demo"
},
"author": "Przemek Wiech",
"license": "Apache 2.0",
"devDependencies": {
"@types/d3": "^5.0.0",
"@types/jasmine": "^2.8.8",
"browser-sync": "^2.26.7",
"browserify": "^16.2.3",
"concurrently": "^3.5.1",
"gh-pages": "^2.0.1",
"gts": "^1.0.0",
"jasmine-ts": "^0.2.1",
"jsdom": "^11.11.0",
"jsdom-global": "^3.0.2",
"nodemon": "^1.17.5",
"ts-loader": "^4.3.0",
"tsify": "^4.0.0",
"typescript": "^3.4.5",
"watchify": "^3.11.1"
},
"dependencies": {
"array-flat-polyfill": "^1.0.1",
"d3": "^5.4.0",
"d3-flextree": "^2.1.1",
"parse-gedcom": "^1.0.5"
},
"repository": {
"type": "git",
"url": "https://github.com/PeWu/topola.git"
},
"homepage": "https://github.com/PeWu/topola",
"bugs": {
"url": "https://github.com/PeWu/topola/issues"
},
"keywords": [
"gedcom",
"genealogy",
"visualization",
"family tree"
]
}