-
Notifications
You must be signed in to change notification settings - Fork 32
/
Copy pathpackage.json
58 lines (58 loc) · 1.47 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
{
"name": "@deephaven/golden-layout",
"version": "0.50.0",
"author": "Deephaven Data Labs LLC",
"license": "Apache-2.0",
"description": "A multi-screen javascript Layout manager",
"main": "dist/index.js",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"source": "src/index.ts",
"type": "module",
"dependencies": {
"@deephaven/components": "file:../components",
"jquery": "^3.6.0"
},
"peerDependencies": {
"react": "^17.x",
"react-dom": "^17.x"
},
"scripts": {
"build": "cross-env NODE_ENV=production run-p build:*",
"build:sass": "sass --embed-sources --load-path=../../node_modules --style=compressed ./src:./dist ./scss:./css",
"build:babel": "babel ./src --out-dir ./dist --extensions \".ts,.js,.tsx,.jsx\" --source-maps --root-mode upward",
"pretest": "npm run build",
"test": "karma start karma.conf.cjs",
"pretest:ci": "npm run pretest",
"test:ci": "karma start karma.conf.cjs --single-run"
},
"repository": {
"type": "git",
"url": "https://github.com/deephaven/web-client-ui.git",
"directory": "packages/golden-layout"
},
"keywords": [
"layout manager",
"javascript",
"docker",
"layout",
"popouts"
],
"files": [
"dist",
"scss",
"css"
],
"sideEffects": [
"*.css"
],
"publishConfig": {
"access": "public"
},
"devDependencies": {
"browserify": "^17.0.0",
"esmify": "^2.1.1",
"karma-browserify": "^8.1.0",
"watchify": "^4.0.0"
}
}