-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathpackage.json
56 lines (56 loc) · 1.55 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
{
"name": "jqPlot",
"title": "Pure JavaScript plotting plugin for jQuery",
"description": "jqPlot is a plotting and charting plugin for the jQuery Javascript framework. jqPlot produces beautiful line, bar and pie charts with many features.",
"keywords": [
"plotting",
"charting",
"graphing"
],
"version": "1.0.10-dev",
"author": {
"name": "Chris Leonello",
"url": "http://http://www.jqplot.com/info.php"
},
"maintainers": [
{
"name": "Steeve Vandecappelle",
"email": "[email protected]",
"url": "https://github.com/svandecappelle/"
},
{
"name": "Johan Bové",
"email": "[email protected]",
"url": "https://github.com/johanbove/"
}
],
"licenses": [
{
"type": "MIT",
"url": "https://github.com/svandecappelle/jQPlot/blob/master/LICENSE"
}
],
"scripts": {
"dist": "node build/minify.js --core --all-plugins",
"core": "node build/minify.js --core",
"plugins": "node build/minify.js --all-plugins",
"plugin": "node build/minify.js",
"test": "mocha"
},
"dependencies": {
"jquery": "1.11.3"
},
"bugs": "https://github.com/svandecappelle/jQPlot/issues/",
"homepage": "https://github.com/svandecappelle/jQPlot/",
"docs": "https://github.com/svandecappelle/jQPlot/wiki/",
"devDependencies": {
"chai": "^3.2.0",
"grunt": "^0.4.5",
"grunt-contrib-cssmin": "^0.12.3",
"grunt-contrib-uglify": "^0.9.1",
"grunt-jsdoc": "^1.1.0",
"minami": "^1.1.1",
"mocha": "^2.2.5"
},
"engine": "node >= 0.12"
}