-
Notifications
You must be signed in to change notification settings - Fork 38
/
package.json
41 lines (41 loc) · 999 Bytes
/
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
{
"name": "radial-progress-chart",
"description": "A customizable Radial Progress Chart written on the top of D3.js.",
"version": "0.0.4",
"repository": "git@github.com:pablomolnar/radial-progress-chart.git",
"scripts": {
"test": "mocha",
"build": "node browserify.js && ./node_modules/uglify-js/bin/uglifyjs ./dist/radial-progress-chart.js -m -o ./dist/radial-progress-chart.min.js",
"hint": "./node_modules/jshint/bin/jshint index.js"
},
"dependencies": {
"d3": "^3.5.0"
},
"devDependencies": {
"browserify": "~10.2.4",
"mocha": "^2.2.5",
"uglify-js": "2.4.15",
"jshint": "2.8.0"
},
"main": "index.js",
"filename": "radial-progress-chart.min.js",
"keywords": [
"apple",
"watch",
"radial",
"bar",
"progress",
"chart",
"polar",
"d3"
],
"author": "Pablo Molnar",
"license": "MIT",
"readmeFilename": "README.md",
"spm": {
"dependencies": {
"d3": "^3.5.0"
},
"main": "index.js"
}
}