-
Notifications
You must be signed in to change notification settings - Fork 22
/
Copy pathpackage.json
41 lines (41 loc) · 966 Bytes
/
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
{
"$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"
},
"peerDependencies": {
"@angular/core": "12.x",
"@ionic/angular": "5.x",
"@types/hammerjs": "2.x",
"hammerjs": "2.x"
},
"author": "Wilson Hobbs",
"license": "MIT",
"devDependencies": {
"@types/hammerjs": "^2.0.36",
"hammerjs": "^2.0.8",
"ng-packagr": "^12.1.0",
"prettier": "^2.3.2",
"pretty-quick": "^3.1.1",
"typescript": "^4.3.5"
},
"ngPackage": {
"lib": {
"entryFile": "src/index.ts"
}
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
}
}