-
Notifications
You must be signed in to change notification settings - Fork 76
/
package.json
61 lines (61 loc) · 1.6 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
{
"name": "chartist-plugin-pointlabels",
"description": "Point Labels Plugin for Chartist.js",
"version": "0.0.6",
"author": "Gion Kunz",
"homepage": "https://gionkunz.github.io/chartist-plugin-pointlabels",
"repository": {
"type": "git",
"url": "https://github.com/gionkunz/chartist-plugin-pointlabels.git"
},
"bugs": {
"url": "https://github.com/gionkunz/chartist-plugin-pointlabels/issues"
},
"keywords": [
"chartist",
"plugin"
],
"files": [
"dist",
"LICENSE",
"package.json",
"README.md"
],
"main": "dist/chartist-plugin-pointlabels.js",
"browser": "dist/chartist-plugin-pointlabels.js",
"licenses": [
{
"type": "WTFPL",
"url": "https://github.com/gionkunz/chartist-plugin-pointlabels/blob/master/LICENSE"
}
],
"dependencies": {},
"devDependencies": {
"chartist": "~0.8.0",
"grunt": "^0.4.5",
"grunt-contrib-clean": "^0.6.0",
"grunt-contrib-copy": "^0.7.0",
"grunt-contrib-jasmine": "~1.1.0",
"grunt-contrib-jshint": "~0.12.0",
"grunt-contrib-uglify": "^0.6.0",
"grunt-umd": "~2.2.1",
"grunt-newer": "^0.8.0",
"jasmine-fixture": "~1.2.2",
"jshint-stylish": "~1.0.0",
"load-grunt-config": "^0.16.0",
"time-grunt": "^1.0.0"
},
"engines": {
"node": ">=0.8.0"
},
"scripts": {
"test": "grunt test"
},
"config": {
"banner": "/* chartist-plugin-pointlabels <%= pkg.version %>\n * Copyright © <%= year %> Gion Kunz\n * Free to use under the WTFPL license.\n * http://www.wtfpl.net/\n */\n",
"src": "src",
"dist": "dist",
"tmp": ".tmp",
"test": "test"
}
}