This repository has been archived by the owner on Feb 17, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
56 lines (53 loc) · 1.51 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
{
"name": "@angularclass/form-errors",
"version": "1.0.3",
"author": "Partick Stapleton <[email protected]>",
"description": "Angular 2 Form Errors",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"files": [
"dist",
"src"
],
"scripts": {
"typings-install": "typings install",
"watch": "tsc --watch",
"prebuild": "rimraf dist",
"build": "tsc",
"lint": "tslint 'src/**/*.ts'",
"test": "",
"start": "npm run build",
"prepublish": "npm run test && npm run build"
},
"devDependencies": {
"@angular/http": "2.0.0-rc.1",
"@angular/common": "2.0.0-rc.1",
"@angular/compiler": "2.0.0-rc.1",
"@angular/core": "2.0.0-rc.1",
"@angular/platform-browser": "2.0.0-rc.1",
"@angular/platform-browser-dynamic": "2.0.0-rc.1",
"@angular/platform-server": "2.0.0-rc.1",
"@angular/router": "2.0.0-rc.1",
"@angular/router-deprecated": "2.0.0-rc.1",
"core-js": "^2.4.0",
"rxjs": "5.0.0-beta.6",
"zone.js": "~0.6.12",
"es6-promise": "^3.1.2",
"es6-shim": "^0.35.0",
"es7-reflect-metadata": "^1.6.0",
"rimraf": "^2.5.2",
"tslint": "^3.5.0",
"ts-helpers": "1.1.1",
"typescript": "^1.9.0-dev.20160409",
"typings": "~1.0.3"
},
"repository": {
"type": "git",
"url": "git+https://github.com/AngularClass/form-errors.git"
},
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/AngularClass/form-errors/issues"
},
"homepage": "https://github.com/AngularClass/form-errors#readme"
}