-
Notifications
You must be signed in to change notification settings - Fork 99
/
Copy pathpackage.json
50 lines (50 loc) · 1.08 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": "family-chart",
"version": "0.2.1",
"description": "family tree creator and viewer",
"keywords": [
"datafull",
"family-chart",
"family tree",
"d3"
],
"homepage": "https://donatso.github.io/family-chart/",
"license": "ISC",
"author": {
"name": "donatso"
},
"main": "dist/family-chart.js",
"unpkg": "dist/family-chart.min.js",
"module": "dist/family-chart.esm.js",
"exports": {
".": {
"import": "./dist/family-chart.esm.js",
"require": "./dist/family-chart.js"
},
"./styles/*": "./dist/styles/*"
},
"repository": {
"type": "git",
"url": "git+https://github.com/donatso/family-chart.git"
},
"files": [
"dist/**/*.js",
"dist/styles/**"
],
"scripts": {
"build": "node build.js",
"test": "yarn run cypress open --project tests",
"dev": "http-server",
"prepublishOnly": "node build.js"
},
"sideEffects": false,
"dependencies": {
"d3": "6"
},
"devDependencies": {
"cypress": "^9.1.0",
"http-server": "^14.1.1",
"rollup": "2",
"rollup-plugin-terser": "7"
}
}