-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
80 lines (80 loc) · 1.56 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
80
{
"name": "juijs",
"version": "2.3.0",
"sideEffects": false,
"description": "The core framework provided by the JUI for implementing such a grid and chart.",
"scripts": {
"test": "jest --config ./jest.config.js",
"dist": "rollup -c && npm run test"
},
"main": "dist/jui-core.cjs.js",
"module": "dist/jui-core.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-core.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-core/issues"
},
"categories": [
"Frameworks",
"UI"
],
"maintainers": [
{
"name": "Alvin",
"email": "alvin@jennifersoft.com"
}
],
"contributors": [
{
"name": "Jayden",
"email": "jayden@jennifersoft.com"
},
{
"name": "Yoha",
"email": "yoha@jennifersoft.com"
}
],
"dependencies": {
"jquery": "^3.3.1"
},
"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.0"
}
}