-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
98 lines (98 loc) · 2.68 KB
/
package.json
File metadata and controls
98 lines (98 loc) · 2.68 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
{
"name": "pipe-web-client",
"version": "4.0.1",
"description": "Web client for importing visualizations and analysis from Pipe",
"main": "index.js",
"scripts": {
"test": "mocha test/index.ls --compilers ls:livescript",
"coverage": "gulp coverage",
"coveralls": "gulp coverage && cat coverage/lcov.info | coveralls"
},
"repository": {
"type": "git",
"url": "https://github.com/pipend/pipe-web-client.git"
},
"keywords": [
"pipe",
"web-client",
"plottables",
"visualizations",
"analytics",
"big",
"data"
],
"author": "Furqan Zafar",
"license": "ISC",
"bugs": {
"url": "https://github.com/pipend/pipe-web-client/issues"
},
"homepage": "https://github.com/pipend/pipe-web-client#readme",
"browserify": {
"transform": [
"browserify-shim"
]
},
"browserify-shim": {
"brace": "global:ace",
"jquery-browserify": "global:$",
"transpilation": "global:transpilation",
"pipe-transformation": "global:pipeTransformation",
"d3": "global:d3",
"nvd3": "global:nv",
"es6-promise": "global:ES6Promise",
"prelude-extension": "global:preludeExtension",
"react": "global:React",
"react-dom": "global:ReactDOM",
"react-router": "global:ReactRouter",
"pipe-transformation/transformation-context": "global:transformationContext"
},
"dependencies": {
"base62": "^1.1.0",
"d3": "^3.5.12",
"d3-tip": "^0.6.7",
"es6-promise": "^3.0.2",
"heatmap.js": "^2.0.1",
"isomorphic-fetch": "^2.2.0",
"jquery-browserify": "^1.8.1",
"moment": "^2.10.6",
"nvd3": "^1.8.1",
"pipe-transformation": "^3.0.0",
"prelude-extension": "^0.0.13",
"prelude-ls": "^1.1.2",
"radar-chart-d3": "git+https://github.com/roeierez/radar-chart-d3.git",
"transpilation": "^2.0.0",
"whatwg-fetch": "^0.10.1"
},
"peerDependencies": {
"react": "^0.14.6",
"react-dom": "^0.14.6"
},
"devDependencies": {
"brace": "git+https://github.com/furqanZafar/brace.git",
"brfs": "^1.4.2",
"browserify": "^12.0.2",
"browserify-shim": "^3.8.12",
"coveralls": "^2.11.6",
"gulp": "^3.9.0",
"gulp-connect": "^2.3.1",
"gulp-if": "^2.0.0",
"gulp-livescript": "^3.0.0",
"gulp-livescript-istanbul": "0.0.1",
"gulp-mocha": "^2.2.0",
"gulp-streamify": "^1.0.2",
"gulp-stylus": "^2.2.0",
"gulp-uglify": "^1.5.1",
"gulp-util": "^3.0.7",
"jsdom": "^3.1.2",
"liveify": "^2.0.0",
"nib": "^1.1.0",
"nock": "^5.2.1",
"node-fetch": "^1.3.3",
"react": "^0.14.6",
"react-dom": "^0.14.6",
"react-router": "^2.0.0-rc4",
"underscore": "^1.8.3",
"vinyl-source-stream": "^1.1.0",
"watchify": "^3.6.1"
}
}