-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
100 lines (100 loc) · 3.26 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": "ngx-panes-source",
"version": "0.0.0",
"license": "MIT",
"scripts": {
"ng": "ng",
"start": "ng serve --proxy-config website/proxy.conf.js",
"website:build": "ng build --prod --aot=false --base-href=ngx-panes --output-path=website-build",
"website:deploy:master": "gh-pages -d website-build --dest=master",
"website:deploy:latest": "gh-pages -d website-build --dest=latest",
"website:clean": "gh-pages-clean",
"website:build:contents": "webpack --config tools/content/webpack.config",
"website:watch:contents": "npm run website:build:contents -- -w",
"test": "ng test",
"lint": "ng lint",
"e2e": "ng e2e",
"lib:publish": "npm publish node_modules/ngx-panes",
"lib:build": "npm run lib:build:ts && npm run lib:build:scss && npm run lib:build:themes",
"lib:build:ts": "ng-packagr -p lib/package.json",
"lib:build:scss": "scss-bundle -c lib/scss-bundle.config.json",
"lib:build:themes": "node-sass lib/themes -o=node_modules/ngx-panes/themes --source-map=true --output-style=compressed"
},
"private": true,
"dependencies": {
"@angular/animations": "^5.2.1",
"@angular/cdk": "^5.2.4",
"@angular/common": "^5.2.1",
"@angular/compiler": "^5.2.1",
"@angular/core": "^5.2.1",
"@angular/flex-layout": "^2.0.0-beta.12",
"@angular/forms": "^5.2.1",
"@angular/http": "^5.2.1",
"@angular/material": "^5.2.4",
"@angular/platform-browser": "^5.2.1",
"@angular/platform-browser-dynamic": "^5.2.1",
"@angular/router": "^5.2.1",
"bootstrap-sass": "^3.3.7",
"codemirror": "^5.26.0",
"core-decorators": "^0.20.0",
"core-js": "^2.4.1",
"fuse.js": "^3.2.0",
"github-markdown-css": "^2.10.0",
"highlight.js": "^9.12.0",
"lodash": "^4.17.5",
"observable-input": "^1.0.0",
"rxjs": "^5.5.2",
"zone.js": "^0.8.4"
},
"devDependencies": {
"@angular/cli": "^1.6.5",
"@angular/compiler-cli": "^5.2.1",
"@types/highlight.js": "^9.1.9",
"@types/jasmine": "2.5.38",
"@types/lodash": "^4.14.104",
"@types/node": "~6.0.60",
"codelyzer": "~2.0.0",
"dgeni": "^0.4.9",
"dgeni-packages": "^0.19.1",
"gh-pages": "^1.1.0",
"glob": "latest",
"gulp": "^3.9.1",
"html-entities": "latest",
"jasmine-core": "~2.5.2",
"jasmine-spec-reporter": "~3.2.0",
"js-beautify": "^1.7.5",
"karma": "~1.4.1",
"karma-chrome-launcher": "~2.1.1",
"karma-cli": "~1.0.1",
"karma-coverage-istanbul-reporter": "^0.2.0",
"karma-jasmine": "~1.1.0",
"karma-jasmine-html-reporter": "^0.2.2",
"marked": "latest",
"ng-packagr": "^1.6.0",
"ng2-file-tree": "^0.4.3",
"prettier": "^1.10.2",
"protractor": "~5.1.0",
"sass-bidi": "^1.1.0",
"scss-bundle": "^2.1.2",
"suppress-chunks-webpack-plugin": "0.0.4",
"ts-loader": "^3.5.0",
"ts-node": "~2.0.0",
"tslint": "~4.5.0",
"typescript": "^2.6.2"
},
"description": "Panes for Angular!",
"main": "gulpfile.js",
"directories": {
"lib": "lib"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/alireza-mirian/ngx-panes.git"
},
"keywords": [],
"author": "",
"bugs": {
"url": "https://gitlab.com/alireza-mirian/ngx-panes/issues"
},
"homepage": "https://gitlab.com/alireza-mirian/ngx-panes#README"
}