forked from gionkunz/chartist-plugin-tooltip
-
Notifications
You must be signed in to change notification settings - Fork 13
/
package.json
74 lines (74 loc) · 1.92 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
{
"name": "chartist-plugin-tooltips-updated",
"description": "Point Labels Plugin for Chartist.js",
"version": "1.0.0",
"author": "LukBukkit & Markus Padourek",
"homepage": "https://github.com/LukBukkit/chartist-plugin-tooltip",
"repository": {
"type": "git",
"url": "git+https://github.com/LukBukkit/chartist-plugin-tooltip.git"
},
"bugs": {
"url": "https://github.com/LukBukkit/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/LukBukkit/chartist-plugin-tooltip/blob/master/LICENSE"
}
],
"dependencies": {
"chartist": "^1.0.0"
},
"devDependencies": {
"grunt": "^1.6.1",
"grunt-contrib-clean": "^2.0.1",
"grunt-contrib-copy": "^1.0.0",
"grunt-contrib-jasmine": "^4.0.0",
"grunt-contrib-jshint": "^3.2.0",
"grunt-contrib-uglify": "^5.2.2",
"grunt-sass": "^3.1.0",
"grunt-umd": "^3.0.0",
"jasmine-fixture": "^2.0.0",
"jshint-stylish": "^2.2.1",
"load-grunt-config": "^4.0.1",
"sass": "^1.79.4",
"time-grunt": "^2.0.0"
},
"resolutions": {
"scss-tokenizer": "^0.4.3",
"ws": "^8.17.1"
},
"scripts": {
"build": "grunt build",
"test": "grunt test",
"prepare": "grunt build",
"preversion": "grunt test",
"version": "grunt build && git add -A ."
},
"config": {
"banner": "/* chartist-plugin-tooltip <%= pkg.version %>\n * Copyright © <%= year %> Markus Padourek\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"
}