forked from lukbukkit/chartist-plugin-tooltip
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
76 lines (76 loc) · 1.97 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
{
"name": "@matteoraf/chartist-plugin-tooltip",
"description": "Point Labels Plugin for Chartist.js",
"version": "0.1.5",
"author": "(matteoraf) LukBukkit & Markus Padourek",
"homepage": "https://github.com/matteoraf/chartist-plugin-tooltip",
"repository": {
"type": "git",
"url": "git+https://github.com/matteoraf/chartist-plugin-tooltip.git"
},
"bugs": {
"url": "https://github.com/matteoraf/chartist-plugin-tooltip/issues"
},
"keywords": [
"chartist",
"plugin",
"tooltip"
],
"files": [
"dist",
"LICENSE",
"package.json",
"README.md"
],
"main": "dist/chartist-plugin-tooltip.js",
"browser": "dist/chartist-plugin-tooltip.js",
"licenses": [
{
"type": "MIT",
"url": "https://github.com/matteoraf/chartist-plugin-tooltip/blob/master/LICENSE"
}
],
"dependencies": {
"@matteoraf/chartist": "^0.11.6"
},
"devDependencies": {
"coffeescript": "2.5.1",
"grunt": "1.1.0",
"grunt-contrib-clean": "^2.0.0",
"grunt-contrib-copy": "^1.0.0",
"grunt-contrib-jasmine": "2.1.0",
"grunt-contrib-jshint": "^2.1.0",
"grunt-contrib-uglify": "^4.0.1",
"grunt-sass": "3.1.0",
"grunt-umd": "~3.0.0",
"jasmine-fixture": "~2.0.0",
"jshint-stylish": "~2.2.1",
"load-grunt-config": "3.0.1",
"node-sass": "4.13.1",
"time-grunt": "^2.0.0"
},
"resolutions": {
"minimist": "~1.2.5"
},
"engines": {
"node": ">=0.10.0"
},
"scripts": {
"build": "grunt build",
"test": "grunt test",
"preversion": "grunt test",
"version": "grunt build && git add -A ."
},
"config": {
"banner": "/* chartist-plugin-tooltip <%= pkg.version %>\n * Copyright © <%= year %> Markus Padourek (matteoraf version)\n * Free to use under the WTFPL license.\n * http://www.wtfpl.net/\n */\n",
"src": "src",
"dist": "dist",
"tmp": ".tmp",
"test": "test",
"src_name": "chartist-plugin-tooltip"
},
"directories": {
"test": "test"
},
"license": "MIT"
}