forked from jbowyers/chartinator
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
101 lines (101 loc) · 2.32 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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
{
"name": "chartinator",
"title": "Chartinator jQuery plugin",
"version": "0.3.10",
"description": "A jQuery plugin for transforming HTML tables, Google Sheets and js arrays into charts using Google Charts",
"main": "dist/chartinator.js",
"homepage": "http://chartinator.com",
"author": "jbowyers",
"scripts": {
"build": "npm install && grunt",
"start": "grunt watch",
"test": "grunt"
},
"repository": {
"type": "git",
"url": ""
},
"keywords": [
"jQuery",
"plugin",
"responsive",
"menu",
"navigation",
"list"
],
"licenses": [
{
"type": "GPLv3",
"url": "http://www.gnu.org/licenses/",
"files": "licence.txt"
}
],
"bugs": {
"url": ""
},
"directories": {
"src": {
"root": "./src",
"js": "./src/js",
"css": "./src/css",
"lib": "./src/lib",
"images": "./src/images",
"html": "./src"
},
"dist": {
"root": "./dist",
"js": "./dist/js",
"css": "./dist/css",
"images": "./dist/images",
"lib": "./dist/lib",
"html": "./dist"
},
"deploy": {
"root": "./../",
"css": "./../lib/chartinator",
"js": "./../lib/chartinator",
"images": "./../lib/chartinator",
"lib": "./../lib",
"html": "./"
},
"demo": {
"root": "./demo",
"js": "./demo/js",
"css": "./demo/css",
"images": "./demo/images",
"lib": "./demo/lib",
"html": "./demo"
},
"doc": "./doc",
"lib": "./lib",
"templates": "./templates",
"test": "./test"
},
"fileNames": {
"js": "chartinator",
"css": "chartinator",
"demo": "demo"
},
"dependencies": {},
"devDependencies": {
"grunt": "~0.4.5",
"grunt-bower-installer": "~0.3.6",
"grunt-browser-sync": "^2.1.2",
"grunt-bump": "~0.0.14",
"grunt-contrib-concat": "~0.4.0",
"grunt-contrib-copy": "~0.5.0",
"grunt-contrib-csslint": "~0.2.0",
"grunt-contrib-cssmin": "~0.10.0",
"grunt-contrib-jshint": "~0.8.0",
"grunt-contrib-uglify": "~0.3.2",
"grunt-contrib-watch": "~0.5.3",
"grunt-htmlhint": "~0.4.0",
"grunt-includes": "~0.4.4",
"grunt-jsonlint": "~1.0.4",
"grunt-markdown": "~0.6.1",
"grunt-modernizr": "^0.5.2",
"grunt-shell-spawn": "~0.3.0",
"load-grunt-tasks": "~0.3.0"
},
"private": true
}