forked from looker/custom_visualizations_v2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1.18 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
{
"name": "looker-visualization-api-examples",
"version": "2.0.0",
"license": "MIT",
"description": "",
"main": "demo/index.html",
"directories": {
"lib": "lib",
"test": "tests"
},
"scripts": {
"build": "webpack --config webpack.config.js",
"watch": "webpack --config webpack.config.js --watch --progress",
"lint": "tslint --project tsconfig.json --format stylish 'src/**/*.ts'",
"lint-fix": "tslint --fix --project tsconfig.json --format stylish 'src/**/*.ts'",
"test": "mocha"
},
"author": "",
"private": true,
"devDependencies": {
"@types/jquery": "^3.3.2",
"css-loader": "^0.28.11",
"d3": "^4.8.0",
"jquery": "^3.3.1",
"jsdom": "^11.11.0",
"mocha": "^3.2.0",
"pivottable": "^2.20.0",
"subtotal-multiple-aggregates": "4mile/subtotal-multiple-aggregates",
"to-string-loader": "^1.1.5",
"ts-loader": "3.2.0",
"tslint": "5.8.0",
"tslint-config-standard": "7.0.0",
"typescript": "2.6.2",
"uglifyjs-webpack-plugin": "^1.2.5",
"webpack": "3.10.0",
"webpack-dev-server": "2.9.7"
},
"dependencies": {
"@types/d3": "^5.0.0",
"@types/d3-sankey": "^0.7.2",
"d3-sankey": "^0.7.1"
}
}