-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
88 lines (88 loc) · 2.42 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
{
"name": "chartist",
"title": "Chartist.js",
"description": "Simple, responsive charts",
"version": "0.9.8",
"author": "Gion Kunz",
"homepage": "https://gionkunz.github.io/chartist-js",
"repository": {
"type": "git",
"url": "https://github.com/gionkunz/chartist-js.git"
},
"bugs": {
"url": "https://github.com/gionkunz/chartist-js/issues"
},
"keywords": [
"chartist",
"responsive charts",
"charts",
"charting"
],
"files": [
"dist",
"LICENSE-WTFPL",
"LICENSE-MIT",
"package.json",
"README.md"
],
"style": "dist/chartist.min.css",
"main": "dist/chartist.js",
"browser": "dist/chartist.js",
"licenses": [
{
"type": "WTFPL",
"url": "https://github.com/gionkunz/chartist-js/blob/master/LICENSE-WTFPL"
},
{
"type": "MIT",
"url": "https://github.com/gionkunz/chartist-js/blob/master/LICENSE-MIT"
}
],
"dependencies": {},
"devDependencies": {
"assemble-dox": "0.0.2",
"grunt": "^1.0.1",
"grunt-concurrent": "^2.3.0",
"grunt-contrib-clean": "^1.0.0",
"grunt-contrib-concat": "^1.0.1",
"grunt-contrib-connect": "^1.0.2",
"grunt-contrib-copy": "^1.0.0",
"grunt-contrib-cssmin": "^1.0.1",
"grunt-contrib-htmlmin": "^1.4.0",
"grunt-contrib-imagemin": "^1.0.0",
"grunt-contrib-jasmine": "^1.0.3",
"grunt-contrib-jshint": "^1.0.0",
"grunt-contrib-uglify": "^1.0.1",
"grunt-contrib-watch": "^1.0.0",
"grunt-critical": "^0.2.1",
"grunt-newer": "^1.1.0",
"grunt-sass": "^1.1.0",
"grunt-svgmin": "^3.2.0",
"grunt-template": "^0.2.3",
"grunt-umd": "^2.3.1",
"grunt-usemin": "^3.1.1",
"handlebars-helpers": "^0.6.1",
"jasmine-jquery": "^2.1.1",
"jquery": "^3.0.0",
"jshint-stylish": "^2.2.0",
"load-grunt-config": "^0.19.2",
"lodash": "^4.13.1",
"seed-random": "^2.2.0",
"time-grunt": "^1.0.0"
},
"engines": {
"node": ">=5.5.0"
},
"scripts": {
"test": "grunt test"
},
"config": {
"banner": "/* Chartist.js <%= pkg.version %>\n * Copyright © <%= year %> Gion Kunz\n * Free to use under either the WTFPL license or the MIT license.\n * https://raw.githubusercontent.com/gionkunz/chartist-js/master/LICENSE-WTFPL\n * https://raw.githubusercontent.com/gionkunz/chartist-js/master/LICENSE-MIT\n */\n",
"src": "src",
"dist": "dist",
"site": "site",
"tmp": ".tmp",
"public": ".public",
"test": "test"
}
}