-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.31 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.31 KB
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
{
"name": "gravity-bubbles",
"description": "This component, using d3js API, draw animated bubbles chart with gravity",
"keywords": [
"gravity",
"chart",
"gravity-bubbles"
],
"licenses": [
{
"type": "GPL-3.0",
"url": "https://opensource.org/licenses/GPL-3.0"
}
],
"version": "1.0.2",
"main": "dist/gravity-bubbles.js",
"bugs": {
"url": "https://github.com/lflores/gravity-bubbles/issues"
},
"author": {
"name": "triad",
"email": "flores.leonardo@gmail.com",
"url": "http://github.com/lflores"
},
"contributors": [
{
"name": "headwinds",
"url": "http://github.com/headwins"
}
],
"scripts": {
"single": "karma start --browsers Firefox --single-run",
"unit": "karma start karma.conf.js",
"test": "npm run single"
},
"repository": {
"type": "git",
"url": "https://github.com/lflores/gravity-bubbles.git"
},
"devDependencies": {
"karma": "~0.12"
},
"dependencies": {
"browserify": "^16.5.0",
"jasmine-core": "^3.5.0",
"karma": "^4.4.1",
"karma-browserify": "^6.1.0",
"karma-chrome-launcher": "^3.1.0",
"karma-firefox-launcher": "^1.1.0",
"karma-coverage": "^2.0.1",
"karma-jasmine": "^2.0.1",
"karma-webpack": "^4.0.2",
"watchify": "^3.11.1",
"webpack": "^4.41.2"
}
}