forked from golden-layout/golden-layout
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
100 lines (100 loc) · 2.33 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
{
"name": "golden-layout",
"version": "1.5.9",
"author": "deepstreamHub GmbH",
"license": "MIT",
"devDependencies": {
"grunt": "~0.4.2",
"grunt-contrib-less": "^1.4.1",
"grunt-contrib-watch": "0.5.3",
"grunt-gulp": "^1.0.1",
"grunt-karma": "^2.0.0",
"grunt-release": "0.13.*",
"gulp": "^3.9.1",
"gulp-concat": "^2.6.0",
"gulp-continuous-concat": "^0.1.1",
"gulp-insert": "^0.5.0",
"gulp-uglify": "^1.5.3",
"gulp-watch": "^4.3.5",
"handlebars": "2.0.0-alpha.2",
"karma": "0.13.*",
"karma-chrome-launcher": "~0.1.4",
"karma-coverage": "0.2.4",
"karma-firefox-launcher": "^1.0.0",
"karma-ie-launcher": "~0.1.5",
"karma-jasmine": "~0.1.5",
"karma-phantomjs-launcher": "^1.0.2",
"tslint": "^3.7.3",
"tslint-config-typings": "^0.2.2",
"typescript": "^1.8.9",
"typings": "^0.7.12",
"walker": "1.0.6"
},
"description": "A multi-screen javascript Layout manager \r https://golden-layout.com",
"main": "./dist/goldenlayout.js",
"typings": "./index.d.ts",
"directories": {
"test": "test"
},
"dependencies": {
"jquery": "*"
},
"scripts": {
"test": "grunt test && npm run tslint",
"tslint": "tslint \"**/*.ts\" -e \"node_modules/**\" -e \"typings/**\"",
"prepublish": "typings install",
"publish": "npm -s run tslint"
},
"repository": {
"type": "git",
"url": "https://github.com/deepstreamIO/golden-layout.git"
},
"keywords": [
"layout manager",
"javascript",
"docker",
"layout",
"popouts"
],
"bugs": {
"url": "https://github.com/deepstreamIO/golden-layout/issues"
},
"homepage": "https://github.com/deepstreamIO/golden-layout",
"npmName": "golden-layout",
"npmFileMap": [
{
"basePath": "/dist/",
"files": [
"goldenlayout.js",
"goldenlayout.min.js"
]
},
{
"basePath": "/src/css/",
"files": [
"goldenlayout.base.css",
"goldenlayout-dark-theme.css",
"goldenlayout-light-theme.css"
]
},
{
"basePath": "/",
"files": [
"typings.json"
]
}
],
"jspm": {
"main": "dist/goldenlayout",
"format": "global",
"registry": "jspm",
"dependencies": {
"jquery": "^2.1.0"
},
"shim": {
"dist/goldenlayout": [
"jquery"
]
}
}
}