-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
130 lines (130 loc) · 4.53 KB
/
Copy pathpackage.json
File metadata and controls
130 lines (130 loc) · 4.53 KB
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
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
{
"name": "arranbartish-angular-cli-widgets",
"version": "4.3.0",
"license": "MIT",
"description": "UI widgets for Dan produced for use with angular2 SPA's",
"homepage": "https://github.com/arranbartish/angular-cli-widgets",
"author": "Arran Bartish <arranbartish@hotmail.com> (https://arran.bartish.online)",
"engines": {
"node": ">=6.1"
},
"repository": {
"type": "git",
"url": "https://github.com/arranbartish/angular-cli-widgets.git"
},
"contributors": [],
"keywords": [
"angular",
"widget",
"angular-cli",
"library",
"component"
],
"bugs": {
"url": "https://github.com/arranbartish/angular-cli-widgets/issues",
"email": "arranbartish@hotmail.com"
},
"scripts": {
"clean-styles-artifacts": "rimraf styles-artifacts",
"clean-aot": "rimraf aot",
"clean-dist": "rimraf dist",
"clean": "npm-run-all -p clean-dist clean-styles-artifacts",
"karma": "karma",
"mkdir": "mkdir",
"cp": "cp",
"ng": "ng",
"ngc": "ngc",
"gulp": "gulp",
"start": "ng serve",
"prebuild": "npm run clean-dist",
"build": "ng build",
"build:prod": "npm run build -- --prod",
"build-lib": "npm run build angular-cli-widgets-components",
"build-lib:prod": "npm run build-lib -- --prod",
"test": "ng test",
"lint": "npm run ng lint",
"pree2e": "webdriver-manager update --versions.chrome=2.42",
"e2e": "ng e2e --webdriver-update false",
"clone-golden-master": "gulp --gulpfile style-test-gulpfile.js",
"pregenerate-golden-master": "mkdir -p styles-artifacts/baseline-repo",
"generate-golden-master": "cd styles-artifacts/baseline-repo && npm prune install && npm-run-all style-test && npm run cp -- -R styles-artifacts/comparisons ../",
"style-test": "cross-env SUITE_LOCATION=styles npm run e2e --webdriver-update false",
"preapproval-style": "npm run clean-styles-artifacts",
"approval-style": "npm-run-all clone-golden-master generate-golden-master style-test",
"transpile": "ngc -p src/tsconfig.aot.json",
"rollup": "rollup -c",
"minify": "uglifyjs aot/bundles/arranbartishAngularCliWidgets.umd.js --screw-ie8 --compress --mangle --comments --output aot/bundles/arranbartishAngularCliWidgets.umd.min.js",
"package": "npm run clean-aot && npm run transpile && gulp && npm run rollup && npm run minify",
"prepackage:prod": "npm install && npm run clean",
"package:prod": "npm-run-all -p build:prod build-lib:prod"
},
"private": false,
"dependencies": {
"@angular/animations": "^6.1.0",
"@angular/cdk": "^6.4.5",
"@angular/common": "^6.1.0",
"@angular/compiler": "^6.1.0",
"@angular/core": "^6.1.0",
"@angular/flex-layout": "^6.0.0-beta.17",
"@angular/forms": "^6.1.0",
"@angular/http": "^6.1.0",
"@angular/material": "^6.4.5",
"@angular/platform-browser": "^6.1.0",
"@angular/platform-browser-dynamic": "^6.1.0",
"@angular/router": "^6.1.0",
"@ngrx/store": "^6.1.0",
"core-js": "^2.5.4",
"rxjs": "^6.0.0",
"zone.js": "~0.8.26"
},
"devDependencies": {
"@angular-devkit/build-angular": "~0.7.0",
"@angular-devkit/build-ng-packagr": "~0.7.0",
"@angular/cli": "~6.1.4",
"@angular/compiler-cli": "^6.1.0",
"@angular/language-service": "^6.1.0",
"@types/chai-as-promised": "0.0.30",
"@types/chai-string": "^1.1.30",
"@types/mocha": "^2.2.40",
"@types/node": "~8.9.4",
"@types/sinon": "^5.0.1",
"@types/sinon-chai": "^3.2.0",
"angular2-template-loader": "^0.6.2",
"chai": "^3.5.0",
"chai-as-promised": "^6.0.0",
"chai-string": "^1.3.0",
"codelyzer": "~4.2.1",
"cross-env": "^5.2.0",
"electron": "^2.0.8",
"gulp": "^3.9.1",
"gulp-git": "^2.8.0",
"gulp-run": "^1.7.1",
"karma": "~1.7.1",
"karma-chai": "^0.1.0",
"karma-chrome-launcher": "^2.2.0",
"karma-coverage-istanbul-reporter": "~2.0.0",
"karma-istanbul-threshold": "^1.2.2",
"karma-mocha": "^1.3.0",
"karma-mocha-reporter": "^2.2.5",
"karma-phantomjs-launcher": "^1.0.4",
"karma-sinon": "^1.0.5",
"karma-sinon-chai": "^1.3.1",
"mocha": "^3.2.0",
"ng-packagr": "^4.2.0",
"npm-run-all": "^4.1.3",
"protractor": "~5.4.0",
"protractor-image-comparison": "^2.0.1",
"rimraf": "^2.6.1",
"rollup": "^0.41.6",
"rollup-plugin-commonjs": "^8.0.2",
"rollup-plugin-node-resolve": "^3.0.0",
"sinon": "^2.1.0",
"sinon-chai": "^2.9.0",
"ts-node": "~5.0.1",
"tsickle": ">=0.29.0",
"tslib": "^1.9.0",
"tslint": "~5.9.1",
"typescript": "^2.9.2",
"wallaby-webpack": "3.9.10"
}
}