-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
51 lines (51 loc) · 1.27 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
{
"name": "d3-simple-gauge",
"version": "1.3.5",
"description": "A simple gauge written with D3.js",
"main": "dist/d3-simple-gauge.js",
"scripts": {
"lint": "eslint src/** test/**",
"start": "gulp",
"test": "npm run lint && gulp dist && mocha"
},
"repository": {
"type": "git",
"url": "git+https://github.com/antoinebeland/d3-simple-gauge.git"
},
"keywords": [
"gauge",
"d3",
"data-visualization"
],
"author": "Antoine Béland",
"license": "MIT",
"bugs": {
"url": "https://github.com/antoinebeland/d3-simple-gauge/issues"
},
"homepage": "https://github.com/antoinebeland/d3-simple-gauge#readme",
"dependencies": {
"d3-array": "^2.0.3",
"d3-ease": "^1.0.5",
"d3-scale": "^3.0.0",
"d3-selection": "^1.4.0",
"d3-shape": "^1.3.5",
"d3-transition": "^1.2.0"
},
"devDependencies": {
"@babel/core": "^7.15.0",
"@babel/plugin-transform-modules-umd": "^7.14.5",
"@babel/preset-env": "^7.15.0",
"chai": "^4.3.4",
"d3": "^5.16.0",
"eslint": "^5.16.0",
"gulp": "^4.0.2",
"gulp-babel": "^8.0.0",
"gulp-rename": "^1.4.0",
"gulp-uglify": "^3.0.2",
"jsdom": "^14.1.0",
"mocha": "^6.2.3",
"pump": "^3.0.0",
"random-number": "0.0.9",
"should": "^13.2.3"
}
}