-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 loc) · 1.38 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
{
"name": "@wireui/alpinejs-hold-directive",
"private": false,
"version": "1.0.3",
"description": "Alpine.js x-hold directive",
"main": "dist/index.js",
"keywords": [
"wireui",
"alpine hold",
"hold directive",
"js hold function",
"ts hold function",
"alpinejs hold directive"
],
"repository": {
"type": "git",
"url": "git+git@github.com:wireui/alpine-hold-directive.git"
},
"bugs": {
"url" : "https://github.com/wireui/alpinejs-hold-directive/issues"
},
"homepage": "https://github.com/wireui/alpinejs-hold-directive",
"author": "PH7-Jack <pedro@wireui.dev>",
"license": "MIT",
"scripts": {
"lint": "eslint tests src --ext .ts",
"test": "jest",
"build": "tsc -p tsconfig.build.json"
},
"prepare": "yarn build",
"prepublishOnly": "yarn lint && yarn test",
"preversion": "yarn lint && yarn test",
"dependencies": {
"alpinejs": "^3.10.3"
},
"devDependencies": {
"@types/alpinejs": "^3.7.0",
"@types/jest": "^28.1.6",
"@typescript-eslint/eslint-plugin": "^5.33.0",
"@typescript-eslint/parser": "^5.33.0",
"eslint": "^8.22.0",
"eslint-plugin-import": "^2.26.0",
"jest": "^28.1.3",
"jest-environment-jsdom": "^28.1.3",
"jest-extended": "^3.0.2",
"ts-jest": "^28.0.7",
"ts-loader": "^9.3.1",
"ts-node": "^10.9.1",
"typescript": "^4.7.4"
},
"files": [
"dist/**/*"
]
}