-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
52 lines (52 loc) · 1.13 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
{
"name": "angular2-form-utils",
"version": "1.2.0",
"scripts": {
"build": "rm -rf dist && tsc",
"lint": "tslint src/**/*.ts",
"pretest": "npm run build",
"test": "karma start",
"postinstall": "typings install",
"prepublish": "tsc",
"tsc": "tsc",
"typings": "typings"
},
"repository": {
"type": "git",
"url": "https://github.com/ghidoz/angular2-form-utils"
},
"author": {
"name": "Daniele Ghidoli",
"url": "http://danieleghidoli.it"
},
"keywords": [
"angular",
"angular2",
"forms",
"validation",
"errors"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/ghidoz/angular2-form-utils/issues"
},
"main": "./dist/index.js",
"typings": "./dist/index.d.ts",
"dependencies": {
"@angular/common": "2.0.0-rc.4",
"@angular/compiler": "2.0.0-rc.4",
"@angular/core": "2.0.0-rc.4",
"@angular/forms": "0.2.0",
"rxjs": "5.0.0-beta.6",
"zone.js": "0.6.12"
},
"devDependencies": {
"codelyzer": "^0.0.25",
"tslint": "^3.13.0",
"typescript": "^1.8.10",
"typings": "^1.3.1"
},
"engines": {
"node": ">=0.8.0"
}
}