forked from marmelab/EventDrops
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
113 lines (113 loc) · 4.15 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
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
107
108
109
110
111
112
113
{
"name": "@neuroglia/event-drops",
"version": "1.4.0",
"description": "A time based / event series interactive visualization using d3.js. Use drag and zoom to navigate in time. (Unofficial fork - d3 v6+ & other improvements)",
"main": "dist/index.js",
"files": [
"dist/",
"*.md"
],
"repository": {
"type": "git",
"url": "https://github.com/neuroglia-io/EventDrops"
},
"peerDependencies": {
"d3": "~6.6.1"
},
"dependencies": {
"d3-time-format": "^2.1.1",
"date-fns": "^1.29.0",
"debounce": "^1.1.0",
"lodash.defaultsdeep": "^4.6.1",
"lodash.uniqby": "^4.7.0"
},
"devDependencies": {
"async": "^2.6.1",
"babel-core": "^6.26.3",
"babel-jest": "^23.0.1",
"babel-loader": "^7.1.4",
"babel-plugin-transform-require-ignore": "^0.1.1",
"babel-preset-es2015": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"configurable.js": "0.1.0",
"css-loader": "^0.28.1",
"d3": "^6.6.1",
"eslint": "3.19.0",
"eslint-config-airbnb": "14.1.0",
"eslint-config-prettier": "^2.9.0",
"eslint-plugin-import": "2.2.0",
"eslint-plugin-jest": "^21.4.2",
"eslint-plugin-jsx-a11y": "4.0.0",
"eslint-plugin-react": "6.10.3",
"html-webpack-plugin": "^3.2.0",
"husky": "0.13.2",
"jasmine-core": "2.5.2",
"jest": "^21.2.1",
"lint-staged": "3.4.0",
"prettier": "^1.10.2",
"rollup": "0.41.6",
"rollup-plugin-babel": "2.7.1",
"rollup-plugin-commonjs": "8.0.2",
"rollup-plugin-css-only": "0.2.0",
"rollup-plugin-json": "^2.3.0",
"rollup-plugin-node-resolve": "3.0.0",
"rollup-plugin-uglify": "2.0.1",
"scss-loader": "0.0.1",
"style-loader": "^0.21.0",
"webpack": "^4.10.2",
"webpack-cli": "^2.1.4",
"webpack-dev-server": "^3.11.2"
},
"bugs": {
"url": "https://github.com/marmelab/EventDrops/issues"
},
"homepage": "https://github.com/marmelab/EventDrops",
"scripts": {
"precommit": "lint-staged",
"start": "webpack-dev-server --config webpack.demo.js --colors --devtool cheap-module-inline-source-map --host=localhost --open",
"karma": "karma start test/karma/karma.conf.js",
"test": "jest",
"test-watch": "jest --watch",
"run": "npm start"
},
"lint-staged": {
"*.{js,css,md}": [
"prettier --write --tab-width 4 --single-quote --trailing-comma es5",
"git add"
]
},
"author": "Thiery Michel <[email protected]>",
"contributors": [
"Jonathan Petitcolas <[email protected]> (https://github.com/jpetitcolas)",
"ThieryMichel (https://github.com/ThieryMichel)",
"Francois Zaninotto (https://github.com/fzaninotto)",
"Kmaschta (https://github.com/Kmaschta)",
"Ohad <[email protected]> (https://github.com/osadan)",
"Gildas Garcia <[email protected]> (https://github.com/djhi)",
"Robin Bressan (https://github.com/RobinBressan)",
"Julien Demangeon <[email protected]> (https://github.com/jdemangeon)",
"Florian F. (https://github.com/floo51)",
"Tristan Newmann (https://github.com/twisty-n)",
"Abdoulaye Siby (https://github.com/asiby)",
"Chad Ramos (https://github.com/chad-ramos)",
"Sedy Bot (https://github.com/sedy-bot)",
"Juliano Alves de Oliveira <[email protected]> (https://github.com/JulianoEngineer)",
"Christian Gass (https://github.com/gassc)",
"Chulki Lee (https://github.com/chulkilee)",
"Emmanuel Quentin (https://github.com/manuquentin)",
"Joan Yin (https://github.com/JoanYin)",
"jbschlosser (https://github.com/jbschlosser)",
"Korney Czukowski (https://github.com/czukowski)",
"kwesterfeld2 (https://github.com/kwesterfeld2)",
"Nathan Breit <[email protected]> (https://github.com/nathanathan)",
"Sam Lai (https://github.com/slai)",
"Simon Hartcher <[email protected]> (https://github.com/deevus)",
"Mélodie Benmouffek (https://github.com/benmoufm)",
"marmelab-bot (https://github.com/marmelab-bot)",
"messense <[email protected]> (https://github.com/messense)",
"Haakon Thor Brunstad (https://github.com/Busteren)",
"bastianonm (https://github.com/bastianonm)",
"Jean-Baptiste Bianchi (https://github.com/neuroglia-io/)"
],
"license": "MIT"
}