forked from CCGE-BOADICEA/pedigreejs
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 1.68 KB
/
package.json
File metadata and controls
68 lines (68 loc) · 1.68 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
{
"name": "pedigreejs",
"version": "5.0.0",
"description": "A JavaScript module for building and visualizing pedigree data in the browser.",
"license": "GPL-3.0",
"author": "CCGE-BOADICEA",
"homepage": "https://ccge-boadicea.github.io/pedigreejs/",
"repository": {
"type": "git",
"url": "https://github.com/CCGE-BOADICEA/pedigreejs.git"
},
"exports": {
".": {
"import": "./build/pedigreejs.es.js",
"require": "./build/pedigreejs.cjs.js"
}
},
"files": [
"build/"
],
"directories": {
"doc": "docs"
},
"scripts": {
"lint": "eslint es/",
"build": "rollup -c",
"build:min": "rollup -c --environment MIN:true",
"build:es": "rollup -c --environment FORMAT:es,MIN:true",
"dev": "python -m http.server 8001",
"test": "jasmine-browser-runner serve",
"check-updates": "ncu",
"update": "ncu -u",
"browserslist:update": "npx browserslist@latest --update-db"
},
"babel": {
"presets": [
[
"@babel/preset-env",
{
"modules": false
}
]
]
},
"browserslist": [
"defaults"
],
"devDependencies": {
"@babel/core": "^7.29.0",
"@babel/preset-env": "^7.29.0",
"@eslint/js": "^10.0.1",
"@rollup/plugin-babel": "^6.1.0",
"@rollup/plugin-commonjs": "^29.0.0",
"@rollup/plugin-node-resolve": "^16.0.3",
"@rollup/plugin-terser": "^0.4.4",
"eslint": "^10.0.2",
"globals": "^17.4.0",
"jasmine-browser-runner": "^4.0.0",
"jasmine-core": "^6.1.0",
"npm-check-updates": "^19.6.2",
"postcss": "^8.5.6",
"rollup": "^4.59.0",
"rollup-plugin-postcss": "^4.0.2"
},
"overrides": {
"serialize-javascript": "^7.0.3"
}
}