forked from osadan/ansyn-event-drops
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
125 lines (125 loc) · 3.14 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
114
115
116
117
118
119
120
121
122
123
124
125
{
"name": "ansyn-event-drops",
"version": "0.4.12",
"description": "A time based / event series interactive visualization using d3.js. Use drag and zoom to navigate in time.",
"main": "dist-es5/index.js",
"files": [
"dist/",
"dist-es5/",
"style.css",
"*.md",
"src",
"*.ts"
],
"repository": {
"type": "git",
"url": "https://github.com/AnSyn/ansyn-event-drops"
},
"dependencies": {
"configurable.js": "^0.1.1",
"d3": "^4.7.0",
"debounce": "^1.0.0"
},
"devDependencies": {
"async": "^2.0.1",
"babel-cli": "^6.26.0",
"babel-core": "^6.18.0",
"babel-loader": "^6.4.1",
"babel-preset-env": "^1.6.0",
"babel-preset-es2015": "^6.18.0",
"babel-preset-stage-0": "^6.16.0",
"configurable.js": "^0.1.0",
"copy-webpack-plugin": "^4.0.1",
"css-loader": "^0.25.0",
"eslint": "^3.19.0",
"eslint-config-airbnb": "^14.1.0",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "^4.0.0",
"eslint-plugin-react": "^6.10.3",
"html-loader": "^0.4.4",
"husky": "^0.13.2",
"jasmine-core": "^2.5.2",
"json-loader": "^0.5.4",
"karma": "^1.3.0",
"karma-firefox-launcher": "^1.0.0",
"karma-jasmine": "^1.0.2",
"karma-webpack": "^2.0.3",
"lint-staged": "^3.4.0",
"mocha": "^3.1.2",
"mocha-traceur": "^2.1.0",
"prettier": "^0.22.0",
"scss-loader": "^0.0.1",
"style-loader": "^0.13.1",
"webpack": "^2.4.1",
"webpack-dev-server": "^2.4.5",
"extract-text-webpack-plugin": "^2.1.0",
"html-webpack-plugin": "^2.28.0"
},
"bugs": {
"url": "https://github.com/osadan/ansyn-event-drops/issues"
},
"typings": "typings.d.ts",
"homepage": "https://github.com/osadan/ansyn-event-drops",
"directories": {
"example": "example",
"test": "test"
},
"scripts": {
"precommit": "lint-staged",
"start": "node ./node_modules/webpack-dev-server/bin/webpack-dev-server --colors --devtool cheap-module-inline-source-map --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": "node ./node_modules/webpack/bin/webpack -p --progress --devtool source-map --config ./webpack.lib.js ",
"build-es5": "babel src --out-dir dist-es5 --source-maps --copy-files"
},
"lint-staged": {
"src/*.js": [
"prettier --write --tab-width 4 --single-quote --trailing-comma es5",
"git add"
]
},
"author": "Thiery Michel <[email protected]>",
"contributors": [
{
"name": "Chad Ramos"
},
{
"name": "Chulki Lee"
},
{
"name": "Emmanuel Quentin"
},
{
"name": "Francois Zaninotto"
},
{
"name": "Joan Yin"
},
{
"name": "Joel Schlosser"
},
{
"name": "Jonathan Petitcolas",
"email": "[email protected]"
},
{
"name": "Mélodie Benmouffek"
},
{
"name": "messense"
},
{
"name": "Robin Bressan"
},
{
"name": "Kévin Maschtaler",
"email": "[email protected]"
},
{
"name": "deevus"
}
],
"license": "MIT"
}