forked from RenovoSolutions/TypeScript-Angular-Utilities
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
84 lines (84 loc) · 2.58 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
{
"name": "typescript-angular-utilities",
"version": "4.1.15",
"description": "Typescript utility classes published as angular services",
"author": "Renovo Development Team",
"main": "source/main.js",
"typings": "source/main.d.ts",
"keywords": [
"typescript",
"utilities"
],
"repository": {
"type": "git",
"url": "https://github.com/RenovoSolutions/TypeScript-Angular-Utilities"
},
"scripts": {
"prepublish": "npm run build",
"update": "npm install",
"version": "gulp version -v ",
"clean": "gulp clean",
"build": "gulp clean && tsc && echo Build complete",
"build.watch": "tsc -w",
"test": "karma start config/karma.conf.js",
"test.debug": "karma start config/karma.debug.conf.js",
"test.tc": "karma start config/karma.tc.conf.js",
"test.full": "karma start config/karma.full.conf.js",
"build-test": "npm run build && npm run test",
"build-test.watch": "npm run build && npm-run-all --parallel build.watch test.debug",
"all": "npm run update && npm run build && npm run test.full"
},
"devDependencies": {
"@renovolive/gulp-utilities": "~2.3.0",
"@types/angular": "1.5.16",
"@types/angular-mocks": "~1.5.5",
"@types/chai": "~3.4.33",
"@types/core-js": "0.9.36",
"@types/jquery": "2.0.32",
"@types/lodash": "4.14.50",
"@types/moment-timezone": "~0.2.34",
"@types/sinon": "~1.16.35",
"chai": "~3.5.0",
"del": "~2.2.0",
"gulp": "~3.9.1",
"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",
"npm-run-all": "~3.1.0",
"run-sequence": "^1.1.5",
"sinon": "~1.17.3",
"systemjs": "~0.19.36",
"systemjs-builder": "~0.15.16",
"typescript": "~2.1.5"
},
"dependencies": {
"@angular/common": "~2.4.0",
"@angular/compiler": "~2.4.0",
"@angular/core": "~2.4.0",
"@angular/http": "~2.4.0",
"@angular/platform-browser": "~2.4.0",
"@angular/platform-browser-dynamic": "~2.4.0",
"@angular/upgrade": "~2.4.0",
"angular": "^1.5.3",
"angular-mocks": "~1.5.0",
"angular2-uuid": "~1.0.7",
"es6-shim": "~0.35.0",
"json-loader": "~0.5.4",
"lodash": "~4.5.1",
"moment": "~2.14.1",
"moment-timezone": "~0.5.3",
"reflect-metadata": "0.1.2",
"rl-async-testing": "~1.6.1",
"rl-http": "~1.5.1",
"rxjs": "~5.0.0",
"zone.js": "~0.7.2"
},
"license": "MIT"
}