-
Notifications
You must be signed in to change notification settings - Fork 13
/
package.json
114 lines (114 loc) · 3.09 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
{
"name": "babbage.ui",
"description": "Angular components to use the Cubes Slicer API provided by Babbage.",
"homepage": "https://github.com/openspending/babbage.ui",
"license": "MIT",
"version": "1.7.0",
"main": "lib/index.js",
"scripts": {
"start": "xdg-open index.html",
"build:lib": "gulp",
"build:dist": "webpack --hide-modules --config webpack.config.development.js",
"build:dist:min": "webpack --hide-modules --config webpack.config.production.js",
"build": "npm run build:lib && npm run build:dist && npm run build:dist:min",
"prepublish": "npm run build",
"review": "jscs src test gulpfile.js webpack.config.base.js webpack.config.development.js webpack.config.production.js",
"fix": "jscs lib test --fix",
"test": "mocha",
"posttest": "npm run review"
},
"files": [
"lib",
"dist",
"src"
],
"dependencies": {
"bluebird": "^3.4.1",
"bubbletree": "^2.1.0",
"c3": "^0.4.18",
"d3": "^3.5.16",
"d3-plugins-sankey-fixed": "^1.3.0",
"isomorphic-fetch": "^2.2.1",
"lodash": "^4.5.1",
"pivottable": "git+https://github.com/nicolaskruchten/pivottable.git",
"raphael": "^2.1.4"
},
"devDependencies": {
"babel-cli": "^6.4.0",
"babel-core": "^6.4.0",
"babel-loader": "^6.2.1",
"babel-plugin-transform-runtime": "^6.15.0",
"babel-polyfill": "^6.3.14",
"babel-preset-es2015": "^6.5.0",
"bootstrap": "3.3.4",
"chai": "^3.4.1",
"concat-with-sourcemaps": "^1.0.4",
"css-loader": "^0.25.0",
"gulp": "^3.9.1",
"gulp-autoprefixer": "^3.1.0",
"gulp-babel": "^6.1.2",
"gulp-clean-css": "^2.0.13",
"gulp-concat": "^2.6.0",
"gulp-include-file": "git+https://github.com/tweedegolf/gulp-include-file.git",
"gulp-less": "^3.0.5",
"gulp-sourcemaps": "^1.6.0",
"gulp-util": "^3.0.7",
"html-minifier": "^0.7.2",
"jscs": "^2.8.0",
"jsdom": "^9.12.0",
"jsdom-global": "^2.1.1",
"mocha": "^3.3.0",
"mocha-jsdom": "^1.0.0",
"nock": "^7.2.2",
"parse5": "^2.2.3",
"raw-loader": "^0.5.1",
"through2": "^2.0.1",
"vue-html-loader": "^1.2.3",
"vue-loader": "^9.8.1",
"vue-style-loader": "^1.0.0",
"webpack": "^1.12.11",
"webpack-dev-server": "^1.14.1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/openspending/babbage.ui.git"
},
"bugs": {
"url": "https://github.com/openspending/babbage.ui/issues"
},
"author": {
"name": "Open Spending",
"email": "",
"url": "https://openspending.org/"
},
"contributors": [
{
"name": "Friedrich Lindenberg",
"email": "friedrich@pudo.org",
"url": "http://pudo.org/"
},
{
"name": "Mila Frerichs",
"email": "",
"url": "http://milafrerichs.de"
},
{
"name": "Holger Drewes",
"email": "",
"url": ""
},
{
"name": "Paul Walsh",
"email": "paulywalsh@gmail.com",
"url": "http://pwalsh.me/"
},
{
"name": "Levko Kravets",
"email": "levko.ne@gmail.com"
},
{
"name": "Ihor Borysyuk",
"email": "borysyuk@gmail.com"
}
]
}