forked from loomchild/webflow-alpinejs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 1.18 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
{
"name": "@loomchild/webflow-alpinejs",
"version": "2.2.0",
"description": "A simple script to allow using Alpine.js in Webflow designer.",
"scripts": {
"build": "esbuild index.js style.css init.js components/* --bundle --minify --sourcemap --outdir=dist",
"serve": "esbuild index.js style.css init.js components/* --bundle --outdir=dist --serve=8001",
"purge": "./purge.sh",
"prepublish": "npm run build",
"postpublish": "npm run purge"
},
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/loomchild/webflow-alpinejs.git"
},
"author": "Jarek Lipski",
"license": "MIT",
"bugs": {
"url": "https://github.com/loomchild/webflow-alpinejs/issues"
},
"homepage": "https://github.com/loomchild/webflow-alpinejs",
"main": "dist/index.js",
"files": [
"dist/*"
],
"dependencies": {
"alpinejs": "^3.8.1",
"libphonenumber-js": "^1.9.51"
},
"devDependencies": {
"esbuild": "^0.14.20",
"eslint": "^7.32.0",
"eslint-config-standard": "^16.0.3",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^5.2.0"
}
}