-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy pathpackage.json
43 lines (43 loc) · 1.06 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
{
"name": "ng-elastic",
"version": "1.0.0-beta.5",
"description": "Angular 2+ directive to auto expand textareas according to their contents.",
"module": "dist/index.js",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"repository": {
"type": "git",
"url": "git+https://github.com/fiznool/ng-elastic.git"
},
"keywords": [
"textarea",
"angular",
"ionic",
"elastic"
],
"author": "Tom Spencer <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/fiznool/ng-elastic/issues"
},
"scripts": {
"build": "rimraf dist && rimraf aot && ngc",
"prepublish": "npm run build"
},
"files": [
"dist"
],
"homepage": "https://github.com/fiznool/ng-elastic#readme",
"devDependencies": {
"@angular/common": "4.4.4",
"@angular/compiler": "4.4.4",
"@angular/compiler-cli": "4.4.4",
"@angular/core": "4.4.4",
"@angular/forms": "4.4.4",
"@angular/platform-browser": "4.4.4",
"rimraf": "2.6.2",
"rxjs": "5.5.2",
"typescript": "2.6.1",
"zone.js": "0.8.18"
}
}