-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
30 lines (30 loc) · 901 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
{
"name": "alpine-plugin-template",
"description": "A simple template for Alpine.js plugins.",
"license": "MIT",
"author": "Ryan Chandler <[email protected]>",
"repository": {
"type": "git",
"url": "https://github.com/ryangjchandler/alpine-plugin-template"
},
"source": "src/index.js",
"main": "dist/alpine-plugin.js",
"umd:main": "dist/alpine-plugin.umd.js",
"module": "dist/alpine-plugin.module.js",
"scripts": {
"build": "microbundle",
"watch": "microbundle watch",
"test": "jest"
},
"dependencies": {
"alpinejs": "^2.6.0"
},
"devDependencies": {
"@babel/preset-env": "^7.11.0",
"@testing-library/dom": "^7.2.2",
"@testing-library/jest-dom": "^5.5.0",
"jest": "^25.4.0",
"jsdom-simulant": "^1.1.2",
"microbundle": "^0.12.3"
}
}