-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
40 lines (40 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
{
"name": "@zattoo/use-double-click",
"version": "1.2.0",
"description": "React hook for continuous double-clicks and combining click and double-click events",
"homepage": "https://github.com/zattoo/use-double-click",
"repository": {
"type": "git",
"url": "git+https://github.com/zattoo/use-double-click.git"
},
"publishConfig": {
"access": "public"
},
"keywords": [
"react",
"hook",
"double-click"
],
"type": "module",
"main": "lib/index.js",
"bugs": {
"url": "https://github.com/zattoo/use-double-click/issues"
},
"author": "Nitzan Nashi",
"license": "MIT",
"scripts": {
"build": "tsc --build --verbose",
"test:lint": "eslint . --ext .js,.jsx --cache --cache-location ./.tmp/.eslintcache",
"test:types": "tsc --noemit",
"test": "npm run test:lint && npm run test:types"
},
"dependencies": {
"react": ">=16.8.0"
},
"devDependencies": {
"@types/react": "16.9.55",
"@zattoo/eslint-config": "9.0.0",
"eslint": "6.8.0",
"typescript": "3.9.2"
}
}