forked from RenovoSolutions/TypeScript-Angular-Components
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
93 lines (85 loc) · 2.99 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
{
"name": "typescript-angular-components",
"version": "1.14.1",
"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": {
"update": "npm install & tsd update",
"clean": "gulp clean",
"build": "gulp clean && tsc && echo Build complete",
"build.watch": "tsc -w",
"test": "karma start",
"test.debug": "karma start karma.debug.conf.js",
"test.tc": "karma start karma.tc.conf.js",
"test.full": "karma start karma.full.conf.js",
"bundle": "webpack & webpack --config webpack.min.config.js",
"bundle.watch": "webpack -w",
"update-build": "npm run update && npm run build",
"update-build-test": "npm run update && npm run build && npm run test",
"build-bundle": "npm run build && npm run bundle",
"build-bundle.watch": "concurrently --kill-others \"npm run build.watch\" \"npm run bundle.watch\"",
"build-test": "npm run build && npm run test",
"build-test.watch": "concurrently --kill-others \"npm run build.watch\" \"npm run test.debug\"",
"full-build": "npm run update && npm run build && npm run bundle",
"all": "npm run update && npm run build && npm run test.full && npm run bundle",
"bootstrap": "webpack --config webpack.bootstrapper.config.js",
"bootstrap.watch": "webpack -w --config webpack.bootstrapper.config.js",
"start": "concurrently --kill-others \"npm run bootstrap.watch\" \"http-server -c-1 -o\""
},
"devDependencies": {
"angular-mocks": "~1.5.0",
"chai": "~3.5.0",
"concurrently": "~2.0.0",
"css-loader": "~0.23.1",
"gulp": "~3.9.1",
"gulp-utilities": "https://github.com/RenovoSolutions/Gulp-Typescript-Utilities/archive/2.0.5.tar.gz",
"json-loader": "^0.5.4",
"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-mocha": "~0.2.2",
"karma-sinon": "~1.0.4",
"karma-teamcity-reporter": "~0.2.1",
"karma-webpack": "~1.7.0",
"mocha": "~2.4.5",
"raw-loader": "~0.5.1",
"sinon": "~1.17.3",
"source-map-loader": "~0.1.5",
"style-loader": "~0.13.1",
"ts-loader": "~0.8.1",
"tsd": "~0.6.5",
"typescript": "~1.8.2",
"webpack": "~1.12.14"
},
"dependencies": {
"angular": "~1.5.3",
"angular-sanitize": "~1.5.0",
"angular-ui-bootstrap": "~0.14.3",
"angular-ui-router": "^1.0.0-alpha.1",
"bootstrap": "~3.3.6",
"jquery": "~2.2.1",
"lodash": "~4.5.1",
"moment": "~2.11.2",
"moment-timezone": "^0.5.3",
"ng-wig": "~2.3.4",
"rx": "~4.0.8",
"signature_pad": "~1.5.3",
"typescript-angular-utilities": "~2.10.5",
"ui-select": "~0.14.7"
},
"license": "GPL-3.0"
}