-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathpackage.json
50 lines (50 loc) · 1.24 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": "navio",
"version": "0.0.74",
"description": "A visualization widget for summarizing and exploring data",
"type": "module",
"main": "dist/navio.min.js",
"module": "dist/navio.esm.js",
"browser": "dist/navio.min.js",
"unpkg": "dist/navio.min.js",
"jsdelivr": "dist/navio.min.js",
"dependencies": {
"d3": "^7.8.5",
"popper.js": "^1.16.1"
},
"devDependencies": {
"@babel/core": "^7.23.2",
"@rollup/plugin-babel": "^6.0.3",
"@rollup/plugin-node-resolve": "^15.0.2",
"@rollup/plugin-terser": "^0.4.3",
"eslint": "^8.42.0",
"eslint-config-prettier": "^8.8.0",
"prettier": "^2.8.8",
"rollup": "^3.25.1",
"rollup-plugin-ascii": "^0.0.3",
"rollup-plugin-commonjs": "^10.1.0"
},
"scripts": {
"build": "rollup -c",
"dev": "rollup -c -w",
"test": "node test/test.js",
"pretest": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/john-guerra/navio.git"
},
"keywords": [
"DataViz",
"Data exploration"
],
"author": {
"name": "John Alexis Guerra Gómez",
"url": "https://johnguerra.co"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/john-guerra/Navio/issues"
},
"homepage": "https://navio.dev"
}