forked from wbhob/ionic-long-press
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
58 lines (58 loc) · 1.52 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
57
58
{
"$schema": "./node_modules/ng-packagr/package.schema.json",
"name": "ionic-long-press",
"version": "2.0.3",
"description": "A little plugin to add long-press events to ionic components",
"main": "./dist/index",
"typings": "./dist/index.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/wbhob/ionic-long-press.git"
},
"scripts": {
"build": "ng-packagr -p package.json"
},
"author": "Wilson Hobbs",
"license": "MIT",
"peerDependencies": {
"@angular/core": "12.0.5",
"@ionic/angular": ">=5",
"@types/hammerjs": "^2.0.39",
"hammerjs": "^2.0.8"
},
"devDependencies": {
"@angular-devkit/core": "^12.0.5",
"@angular-devkit/schematics": "^12.0.5",
"@angular/common": "^12.0.5",
"@angular/compiler": "^12.0.5",
"@angular/compiler-cli": "^12.0.5",
"@angular/core": "^12.0.5",
"@angular/forms": "^12.0.5",
"@angular/platform-browser": "^12.0.5",
"@angular/platform-browser-dynamic": "^12.0.5",
"@angular/router": "^12.0.5",
"@ionic/angular": "5.6.9",
"@types/hammerjs": "^2.0.39",
"awesome-typescript-loader": "^5.2.1",
"hammerjs": "^2.0.8",
"husky": "^6.0.0",
"ng-packagr": "12.0.6",
"prettier": "^2.3.1",
"pretty-quick": "^3.1.1",
"rxjs": "7.1.0",
"tsickle": "^0.43.0",
"typescript": "4.3.4",
"zone.js": "^0.11.4"
},
"ngPackage": {
"lib": {
"entryFile": "src/index.ts"
}
},
"dependencies": {},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
}
}