-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
51 lines (51 loc) · 1.57 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
{
"name": "superset-plugin-chart-liquid",
"version": "0.1.5",
"description": "Superset Liquid Chart Plugin",
"sideEffects": false,
"main": "lib/index.js",
"module": "esm/index.js",
"files": [
"esm",
"lib"
],
"scripts": {
"build": "npm run build-cjs && npm run build-esm && npm run ts-types",
"build-cjs": "babel src --extensions \".ts,.tsx,.js,.jsx\" --copy-files --out-dir lib",
"build-clean": "npm run clean && npm run build",
"build-esm": "BABEL_OUTPUT=esm babel src --extensions \".ts,.tsx,.js,.jsx\" --copy-files --out-dir esm",
"dev": "BABEL_OUTPUT=esm babel src --extensions \".ts,.tsx,.js,.jsx\" --watch --copy-files --out-dir esm",
"prebuild": "rimraf {lib,esm,tsconfig.tsbuildinfo}",
"postbuild": "npm run test",
"ts-types": "tsc --build",
"test": "jest"
},
"author": "Superset",
"homepage": "https://github.com/preset-io/superset-plugin-chart-liquid",
"bugs": "https://github.com/preset-io/superset-plugin-chart-liquid/issues",
"repository": {
"type": "git",
"url": "[email protected]:preset-io/superset-plugin-chart-liquid.git"
},
"license": "Apache-2.0",
"publishConfig": {
"access": "public"
},
"dependencies": {
"@ant-design/charts": "^1.3.2",
"process": "^0.11.10"
},
"peerDependencies": {
"@superset-ui/chart-controls": "*",
"@superset-ui/core": "*",
"react": "^16.13.1"
},
"devDependencies": {
"@airbnb/config-babel": "^2.0.1",
"@babel/cli": "^7.16.0",
"@types/jest": "^26.0.4",
"jest": "^26.6.3",
"rimraf": "^3.0.2",
"typescript": "^4.1.2"
}
}