-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathpackage.json
49 lines (49 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
43
44
45
46
47
48
49
{
"$schema": "./node_modules/ng-packagr/package.schema.json",
"name": "ionic2-mask-directive",
"version": "1.0.8",
"description": "directive for mask ion-input on ionic2",
"main": "index.js",
"scripts": {
"build": "tsc --noStrictGenericChecks",
"prepublish": "npm run build",
"packagr": "ng-packagr -p package.json",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/tiaguinho/ionic2-mask-directive.git"
},
"keywords": [
"ionic2",
"ion-input",
"mask"
],
"author": "Tiago Temporin",
"license": "MIT",
"bugs": {
"url": "https://github.com/tiaguinho/ionic2-mask-directive/issues"
},
"homepage": "https://github.com/tiaguinho/ionic2-mask-directive#readme",
"ngPackage": {
"lib": {
"entryFile": "index.ts"
}
},
"devDependencies": {
"typescript": "^2.6.2",
"ng-packagr": "^1.6.0"
},
"dependencies": {
"@angular/common": "5.2.2",
"@angular/compiler": "5.2.2",
"@angular/compiler-cli": "5.2.2",
"@angular/core": "5.2.2",
"@angular/forms": "5.2.2",
"@angular/http": "5.2.2",
"@angular/platform-browser": "5.2.2",
"@angular/platform-browser-dynamic": "5.2.2",
"rxjs": "5.5.6",
"zone.js": "0.8.20"
}
}