-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 1.28 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
{
"name": "overcomplicated",
"version": "1.0.0",
"private": true,
"description": "Helps Overwatch teams choose an appropriate counter-composition based upon the enemy team's choices.",
"main": "",
"scripts": {
"typings": "cd src && typings i",
"clean": "rimraf build docs",
"lint": "tslint -c src/tslint.json -e src/**/*.d.ts src/**/*.ts",
"postinstall": "npm run typings",
"prebuild": "npm run lint && npm run clean",
"build": "tsc -p src",
"postbuild": "node publish.js",
"start": "http-server docs",
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "David Wood <[email protected]>",
"license": "MIT",
"dependencies": {
"@angular/common": "^2.0.0-rc.5",
"@angular/compiler": "^2.0.0-rc.5",
"@angular/core": "^2.0.0-rc.5",
"@angular/http": "^2.0.0-rc.5",
"@angular/platform-browser": "^2.0.0-rc.5",
"@angular/platform-browser-dynamic": "^2.0.0-rc.5",
"bulma": "^0.1.2",
"core-js": "^2.4.1",
"font-awesome": "^4.6.3",
"reflect-metadata": "^0.1.3",
"rxjs": "^5.0.0-beta.11",
"systemjs": "^0.19.35",
"zone.js": "^0.6.6"
},
"devDependencies": {
"cpr": "^1.1.2",
"http-server": "^0.9.0",
"tslint": "^3.15.1",
"typescript": "^1.8.10",
"typings": "^1.3.2"
}
}