This repository was archived by the owner on Mar 4, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathpackage.json
More file actions
114 lines (114 loc) · 4.52 KB
/
package.json
File metadata and controls
114 lines (114 loc) · 4.52 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
{
"name": "typescript-angular-components",
"version": "4.4.5",
"description": "Reusable responsive angular components",
"author": "Renovo Development Team",
"keywords": [
"typescript",
"components",
"angular",
"responsive"
],
"repository": {
"type": "git",
"url": "https://github.com/RenovoSolutions/TypeScript-Angular-Components"
},
"main": "./source/ui.module.js",
"typings": "./source/ui.module.d.ts",
"scripts": {
"prepublish": "npm run build && gulp bundle-css",
"update": "npm install && npm run bundle-deps",
"update.wipe-npm": "gulp wipe-npm-update",
"version": "gulp version -v ",
"clean": "gulp clean",
"build": "gulp clean && tsc && echo Build complete",
"build.watch": "tsc -w",
"bundle-tests": "gulp bundle-tests",
"test": "npm run bundle-tests && karma start",
"test.debug": "gulp bundle-tests && concurrently --kill-others \"gulp bundle-tests.watch\" \"karma start karma.debug.conf.js\"",
"test.tc": "npm run bundle-tests && karma start karma.tc.conf.js",
"test.full": "npm run bundle-tests && karma start karma.full.conf.js",
"build-test": "npm run build && npm run test",
"build-test.watch": "npm run build && gulp bundle-tests && concurrently --kill-others \"npm run build.watch\" \"npm run test.debug\"",
"all": "npm run update && npm run build && npm run test.full && npm run bundle",
"bundle": "gulp bundle-css && gulp bundle-bootstrapper",
"bundle.watch": "concurrently --kill-others \"gulp bundle-css.watch\" \"gulp bundle-bootstrapper.watch\" ",
"build-bundle": "npm run build && npm run bundle",
"build-bundle.watch": "concurrently --kill-others \"npm run build.watch\" \"npm run bundle.watch\"",
"serve": "lite-server",
"start": "concurrently --kill-others \"npm run bundle.watch\" \"npm run serve\"",
"bundle-deps": "gulp bundle-bootstrapper-vendor && gulp bundle-bootstrapper-renovo && gulp bundle-tests-vendor && gulp bundle-tests-renovo"
},
"devDependencies": {
"@renovolive/gulp-utilities": "~2.4.0",
"@types/angular": "1.5.16",
"@types/angular-mocks": "~1.5.9",
"@types/angular-ui-bootstrap": "~0.13.35",
"@types/bootstrap": "~3.3.32",
"@types/bootstrap-touchspin": "0.0.29",
"@types/chai": "~3.4.33",
"@types/core-js": "0.9.35",
"@types/jquery": "~2.0.32",
"@types/jquery.jsignature": "~2.0.28",
"@types/lodash": "4.14.50",
"@types/moment-timezone": "~0.2.34",
"@types/sinon": "~1.16.35",
"chai": "~3.5.0",
"concurrently": "~2.0.0",
"del": "~2.2.0",
"gulp": "~3.9.1",
"gulp-clean-css": "~2.0.7",
"gulp-concat": "~2.6.0",
"jasmine": "~2.5.2",
"jasmine-core": "~2.5.2",
"karma": "~0.13.21",
"karma-chai": "~0.1.0",
"karma-chrome-launcher": "~0.2.2",
"karma-firefox-launcher": "~0.1.7",
"karma-ie-launcher": "~0.2.0",
"karma-jasmine": "~1.0.2",
"karma-sinon": "~1.0.4",
"karma-teamcity-reporter": "~0.2.1",
"lite-server": "~2.2.2",
"reflect-metadata": "0.1.2",
"run-sequence": "~1.1.5",
"sinon": "~1.17.3",
"system-css": "~0.1.0",
"system-text": "~0.1.0",
"systemjs-builder": "~0.15.16",
"traceur": "0.0.111",
"typescript": "~2.1.0"
},
"dependencies": {
"@angular/common": "~2.4.0",
"@angular/compiler": "~2.4.0",
"@angular/core": "~2.4.0",
"@angular/forms": "~2.4.0",
"@angular/http": "~2.4.0",
"@angular/platform-browser": "~2.4.0",
"@angular/platform-browser-dynamic": "~2.4.0",
"@angular/router": "~3.4.0",
"@angular/upgrade": "~2.4.0",
"angular": "~1.5.3",
"angular-animate": "~1.5.3",
"angular-mocks": "~1.5.0",
"angular-sanitize": "~1.5.0",
"angular-ui-bootstrap": "~0.14.3",
"angular2-uuid": "~1.0.7",
"bootstrap": "~3.3.6",
"core-js": "~2.4.1",
"jquery": "~2.2.1",
"lodash": "~4.5.1",
"moment": "~2.14.1",
"moment-timezone": "~0.5.3",
"ng-wig": "~2.3.4",
"rl-async-testing": "~1.6.1",
"rl-http": "~1.5.1",
"rxjs": "~5.0.0",
"systemjs": "~0.19.28",
"typescript-angular-utilities": "~4.1.3",
"ui-select": "~0.14.7",
"zone.js": "~0.7.2"
},
"license": "GPL-3.0"
}