forked from looker/custom_visualizations_v2
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 897 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 897 Bytes
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
{
"name": "looker-visualization-api-examples",
"version": "2.0.0",
"license": "MIT",
"description": "",
"main": "demo/index.html",
"directories": {
"lib": "lib",
"test": "tests"
},
"scripts": {
"build": "yarn webpack --config webpack.config.js",
"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": {
"d3": "^4.8.0",
"mocha": "^3.2.0",
"ts-loader": "3.2.0",
"tslint": "5.8.0",
"tslint-config-standard": "7.0.0",
"typescript": "2.6.2",
"webpack": "3.10.0",
"webpack-dev-server": "2.9.7"
},
"engines": {
"yarn": "1.3.2"
},
"dependencies": {
"@types/d3": "^5.0.0",
"@types/d3-sankey": "^0.7.2",
"d3-sankey": "^0.7.1"
}
}