forked from marmelab/EventDrops
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
106 lines (106 loc) · 2.49 KB
/
package.json
File metadata and controls
106 lines (106 loc) · 2.49 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
{
"name": "event-drops",
"version": "0.5.0",
"description": "A time based / event series interactive visualization using d3.js. Use drag and zoom to navigate in time.",
"main": "dist/eventDrops.js",
"files": [
"dist/",
"style.css",
"*.md"
],
"repository": {
"type": "git",
"url": "https://github.com/marmelab/EventDrops"
},
"dependencies": {
"d3": "3",
"moment": "^2.15.1"
},
"devDependencies": {
"async": "^2.0.1",
"babel-core": "6.4.5",
"babel-eslint": "^4.1.8",
"babel-loader": "6.2.1",
"babel-preset-es2015": "6.3.13",
"babel-preset-stage-0": "^6.3.13",
"configurable.js": "0.1.0",
"css-loader": "0.19.0",
"eslint": "1.6.0",
"eslint-config-airbnb": "0.1.0",
"extract-text-webpack-plugin": "1.0.1",
"html-loader": "0.3.0",
"html-webpack-plugin": "1.6.1",
"jasmine-core": "2.4.1",
"json-loader": "^0.5.4",
"karma": "^0.13.19",
"karma-firefox-launcher": "0.1.7",
"karma-jasmine": "^0.3.6",
"karma-webpack": "^1.7.0",
"mocha": "1.21.4",
"mocha-traceur": "2.1.0",
"scss-loader": "0.0.1",
"style-loader": "0.12.4",
"webpack": "1.12.2",
"webpack-dev-server": "1.11.0"
},
"bugs": {
"url": "https://github.com/marmelab/EventDrops/issues"
},
"homepage": "https://github.com/marmelab/EventDrops",
"directories": {
"example": "example",
"test": "test"
},
"scripts": {
"prepublish": "make build",
"postpublish": "make deploy-demo",
"start": "webpack-dev-server --colors --host=0.0.0.0",
"karma": "karma start test/karma/karma.conf.js",
"test": "npm run karma -- --single-run",
"test-watch": "npm run karma",
"run": "npm start",
"build": "webpack -p --optimize-minimize --optimize-occurence-order --optimize-dedupe --progress --devtool source-map"
},
"author": "Thiery Michel <thiery@marmelab.com>",
"contributors": [
{
"name": "Chad Ramos"
},
{
"name": "Chulki Lee"
},
{
"name": "Emmanuel Quentin"
},
{
"name": "Francois Zaninotto"
},
{
"name": "Joan Yin"
},
{
"name": "Joel Schlosser"
},
{
"name": "Jonathan Petitcolas",
"email": "petitcolas.jonathan@gmail.com"
},
{
"name": "Mélodie Benmouffek"
},
{
"name": "messense"
},
{
"name": "Robin Bressan"
},
{
"name": "Kévin Maschtaler",
"email": "kevin@marmelab.com"
},
{
"name": "deevus"
}
],
"license": "MIT"
}