-
Notifications
You must be signed in to change notification settings - Fork 13
/
package.json
92 lines (92 loc) · 2.76 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
{
"name": "@goldsam/ng-golden-layout",
"version": "0.0.3",
"private": false,
"description": "Angular bindings for golden-layout",
"main": "bundles/ng-golden-layout.umd.js",
"module": "index.js",
"scripts": {
"lint": "tslint src/**/*.ts",
"compile": "ngc -p tsconfig-build.json",
"bundle": "rollup -c rollup.config.js",
"copy": "copy package.json dist && copy LICENSE dist && copy README.md dist",
"build": "npm run lint && npm run compile && npm run bundle && npm run copy",
"clean": "rimraf dist",
"demo.build": "ng build -prod --aot",
"demo.serve": "ng serve",
"demo.gh-pages": "gh-pages -d demo/dist",
"test": "karma start",
"pack-lib": "npm pack ./dist",
"publish-lib": "npm run clean && npm run build && npm publish ./dist --access public",
"docs": "compodoc -p tsconfig.json --includes ./src --disablePrivateOrInternalSupport",
"docs.serve": "compodoc -s"
},
"typings": "index.d.ts",
"author": "Sam Goldmann",
"repository": {
"type": "git",
"url": "https://github.com/goldsam/ng-golden-layout.git"
},
"bugs": {
"url": "https://github.com/goldsam/ng-golden-layout/issues"
},
"homepage": "https://github.com/goldsam/ng-golden-layout",
"keywords": [
"angular",
"angular2",
"golden-layout",
"docking",
"layout"
],
"license": "MIT",
"peerDependencies": {
"@angular/common": ">= 4.0.2",
"@angular/core": ">= 4.0.2",
"golden-layout": ">= 4.0.2",
"jquery": ">= 1.11.3"
},
"devDependencies": {
"@angular/cli": "^1.0.0",
"@angular/common": "4.0.2",
"@angular/compiler": "4.0.2",
"@angular/compiler-cli": "4.0.2",
"@angular/core": "4.0.2",
"@angular/platform-browser": "4.0.2",
"@angular/platform-browser-dynamic": "4.0.2",
"@angular/platform-server": "4.0.2",
"@angular/router": "4.0.2",
"@compodoc/compodoc": "^1.0.0-beta.3",
"@types/jasmine": "2.5.47",
"@types/jquery": "^2.0.40",
"@types/node": "7.0.5",
"chalk": "1.1.3",
"classlist-polyfill": "^1.0.3",
"codelyzer": "^2.0.0-beta.4",
"copy": "^0.3.0",
"core-js": "2.4.1",
"gh-pages": "^0.12.0",
"golden-layout": "1.5.7",
"jasmine-core": "2.5.2",
"jquery": "^1.11.3",
"karma": "1.4.1",
"karma-chrome-launcher": "2.0.0",
"karma-jasmine": "1.1.0",
"karma-sourcemap-loader": "0.3.7",
"karma-spec-reporter": "0.0.26",
"karma-webpack": "2.0.2",
"npm-run-all": "^4.0.2",
"reflect-metadata": "0.1.9",
"rimraf": "^2.6.1",
"rollup": "0.41.4",
"rollup-plugin-sourcemaps": "^0.4.2",
"rxjs": "5.1.0",
"shelljs": "0.7.6",
"ts-helpers": "1.1.2",
"ts-loader": "2.0.0",
"tslint": "4.4.2",
"typescript": "2.2.2",
"uglify-js": "2.7.5",
"webpack": "2.4.1",
"zone.js": "0.7.6"
}
}