-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
79 lines (79 loc) · 1.63 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
{
"name": "juijs-graph",
"version": "1.1.4",
"sideEffects": false,
"description": "SVG-based JUI chart that can be used in the browser and Node.js. Support many types of charts. (Dashboard, Map, Topology, Full 3D)",
"scripts": {
"test": "jest --config ./jest.config.js",
"dev": "rollup -c -w",
"dist": "npm run test && rollup -c"
},
"main": "dist/jui-graph.cjs.js",
"module": "dist/jui-graph.esm.js",
"files": [
"dist",
"examples",
"src",
"test",
"package.json",
"README.md",
"jest.config.js",
"rollup.config.js",
".babelrc",
".gitignore"
],
"repository": {
"type": "git",
"url": "https://github.com/juijs/jui-graph.git"
},
"keywords": [
"HTML5",
"NodeJS",
"CSS",
"JS",
"JavaScript",
"SVG",
"Chart",
"Framework",
"Web development",
"free",
"MIT"
],
"author": "seogi1004",
"license": "MIT",
"bugs": {
"url": "https://github.com/juijs/jui-graph/issues"
},
"categories": [
"Frameworks",
"UI"
],
"maintainers": [
{
"name": "Alvin",
"email": "[email protected]"
}
],
"contributors": [
{
"name": "Jayden",
"email": "[email protected]"
},
{
"name": "Yoha",
"email": "[email protected]"
}
],
"devDependencies": {
"babel": "^6.23.0",
"babel-core": "^6.26.3",
"babel-jest": "^23.6.0",
"babel-plugin-external-helpers": "^6.22.0",
"babel-preset-env": "^1.7.0",
"jest": "^23.6.0",
"rollup": "^0.66.6",
"rollup-plugin-babel": "^3.0.7",
"rollup-plugin-uglify": "^6.0.3",
"rollup-watch": "^4.3.1"
}
}