-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
98 lines (95 loc) · 2.96 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
{
"title": "arts - the AngularJS and RequireJS using TypeScript Seed",
"name": "angular-require-typescript-seed",
"description": "angular-require-typescript-seed - the AngularJS and RequireJS using TypeScript Seed",
"version": "0.0.8",
"homepage": "https://github.com/gregoranders/angular-require-typescript-seed",
"author": {
"email": "[email protected]",
"name": "Gregor Anders",
"url": "https://github.com/gregoranders"
},
"bugs": {
"url": "https://github.com/gregoranders/arts/issues"
},
"license": {
"type": "BSD-3-Clause",
"url": "https://github.com/gregoranders/arts/blob/master/LICENSE"
},
"private": false,
"repository": {
"type": "git",
"url": "git://github.com/gregoranders/arts.git"
},
"engines": {
"node": "~0.10.0",
"node": "~0.12.0"
},
"keywords": [
"angular",
"angularjs",
"require",
"requirejs",
"typescript",
"jquery",
"jasmine",
"gulp",
"karma",
"e2e",
"protractor",
"seed"
],
"dependencies": {
"bower": "^1.4.0",
"gulp": "^3.8.11",
"grunt": "^0.4.5",
"gulp-connect": "^2.2.0 ",
"connect-pushstate": "^1.0.0",
"gulp-concat": "^2.5.2 ",
"gulp-filter": "^2.0.2",
"gulp-rename": "^1.2.0",
"gulp-replace": "^0.5.3",
"gulp-if": "^1.2.5",
"gulp-karma": "^0.0.4",
"gulp-sass": "^1.3.3",
"gulp-minify-css": "^1.0.0",
"gulp-sourcemaps": "^1.5.0",
"gulp-typescript": "^2.5.0",
"gulp-typedoc": "^1.1.0",
"gulp-uglify": "^1.1.0",
"amd-optimize": "^0.4.3",
"main-bower-files": "2.6.2",
"through2": "^0.6.3",
"merge2": "^0.3.1",
"typescript": "^1.4.1",
"tsd": "^0.5.7",
"glob": "5.0.3",
"gulp-protractor": "git://github.com/szimek/gulp-protractor.git",
"coveralls": "^2.11.2",
"jasmine-core": "^2.2.0",
"karma": "^0.12.31",
"karma-chrome-launcher": "^0.1.7",
"karma-phantomjs-launcher": "^0.1.4",
"karma-firefox-launcher": "^0.1.4",
"karma-ie-launcher": "^0.1.5",
"karma-iebrowsers-launcher": "^0.0.1",
"karma-junit-reporter": "^0.2.2",
"karma-requirejs": "^0.2.2 ",
"karma-coverage": "^0.2.7",
"karma-jasmine": "^0.3.5",
"protractor": "^2.0.0",
"requirejs": "2.1.16",
"requirejs-text": "2.0.12"
},
"scripts": {
"transpile-config": "tsc --target ES5 --sourcemap --outDir ./conf conf/gulpconf.ts && tsc --target ES5 --sourcemap --outDir ./conf conf/gulpfunc.ts && tsc --target ES5 --sourcemap --outDir ./ gulpfile.ts",
"coverall": "gulp build && gulp run:test:unit:ci && cd build/development && mv test-coverage/*/lcov.info . && cat lcov.info | ../../node_modules/.bin/coveralls",
"build-release": "gulp build:release",
"tsd": "tsd reinstall -o -s",
"postinstall": "bower install && webdriver-manager update && npm run-script transpile-config",
"prestart": "npm install",
"start": "gulp build && gulp run:server",
"pretest": "npm install && gulp build",
"test": "gulp run:test:unit"
}
}