-
-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
40 lines (40 loc) · 1.25 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": "@ryangjchandler/alpine-tooltip",
"description": "Add tooltips to your Alpine 3.x components with a custom directive.",
"version": "2.0.1",
"author": {
"name": "Ryan Chandler",
"email": "[email protected]",
"url": "https://ryangjchandler.co.uk"
},
"repository": {
"type": "git",
"url": "https://github.com/ryangjchandler/alpine-tooltip"
},
"main": "src/index.js",
"module": "dist/module.esm.js",
"type": "module",
"dependencies": {
"tippy.js": "^6.3.1"
},
"devDependencies": {
"@types/jest": "^27.0.2",
"brotli-size": "^4.0.0",
"esbuild": "^0.8.39",
"eslint": "^7.22.0",
"eslint-config-standard": "^16.0.2",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.3.1",
"eslint-plugin-standard": "^4.1.0",
"jest": "^27.2.4",
"lint-staged": "^10.5.4"
},
"scripts": {
"test": "npm run build && node --experimental-vm-modules node_modules/.bin/jest",
"build": "node ./scripts/build.js",
"watch": "node ./scripts/build.js --watch",
"lint": "eslint .",
"lint-fix": "eslint . --fix"
}
}