This repository was archived by the owner on Feb 26, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 1.74 KB
/
package.json
File metadata and controls
70 lines (70 loc) · 1.74 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
{
"name": "issue-zero",
"version": "1.0.0",
"description": "Github issue management app.",
"main": "index.js",
"scripts": {
"test": "karma start --single-run; gulp enforce-format; gulp lint",
"postinstall": "typings install",
"start": "cd dist/client; firebase serve",
"build_and_deploy": "gulp build:client; cd dist/client; firebase deploy"
},
"repository": {
"type": "git",
"url": "git+https://github.com/angular/issue-zero.git"
},
"contributors": [
{
"name": "Rob Wormald",
"url": "https://twitter.com/robwormald"
},
{
"name": "Alex Rickabaugh",
"url": "https://twitter.com/synalx"
},
{
"name": "Jeff Cross",
"url": "https://twitter.com/jeffbcross"
}
],
"license": "MIT",
"bugs": {
"url": "https://github.com/angular/issue-zero/issues"
},
"homepage": "https://github.com/angular/issue-zero#readme",
"keywords": [
"angular",
"angular2",
"progressive web apps",
"github",
"mobile"
],
"devDependencies": {
"clang-format": "^1.0.37",
"firebase-tools": "^2.2.1",
"fs-extra": "^0.26.7",
"gulp": "^3.9.1",
"gulp-clang-format": "^1.0.23",
"gulp-tslint": "^4.3.3",
"gulp-typescript": "^2.12.1",
"jasmine-core": "^2.4.1",
"karma": "^0.13.22",
"karma-chrome-launcher": "^0.2.3",
"karma-jasmine": "^0.3.8",
"merge2": "^1.0.1",
"systemjs": "^0.19.24",
"systemjs-builder": "^0.15.13",
"ts-node": "^0.7.1",
"tslint": "^3.6.0",
"typescript": "^1.8.9",
"typings": "^0.7.9"
},
"dependencies": {
"angular2": "^2.0.0-beta.11",
"es6-promise": "^3.1.2",
"es6-shim": "^0.35.0",
"reflect-metadata": "^0.1.2",
"rxjs": "^5.0.0-beta.2",
"zone.js": "^0.6.6"
}
}