generated from KevinBatdorf/alpine-plugin-template
-
-
Notifications
You must be signed in to change notification settings - Fork 19
/
package.json
107 lines (107 loc) · 2.92 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
{
"name": "alpine-magic-helpers",
"version": "1.2.2",
"description": "A collection of magic properties and helper functions for use with Alpine.",
"source": [
"src/index.js",
"src/component.js",
"src/fetch.js",
"src/interval.js",
"src/truncate.js",
"src/range.js",
"src/screen.js",
"src/scroll.js",
"src/undo.js"
],
"main": "dist/index.js",
"scripts": {
"build": "rollup -c",
"watch": "concurrently \"rollup -c -w\" \"browser-sync examples --no-open --ss . -f examples dist/index.js\"",
"test": "jest",
"test-watch": "jest --watch",
"lint": "eslint .",
"lint-fix": "eslint . --fix"
},
"repository": {
"type": "git",
"url": "git+https://github.com/alpine-collective/magic-helpers.git"
},
"keywords": [
"alpinejs",
"magic properties",
"alpine"
],
"authors": [
{
"name": "Kevin Batdorf",
"url": "https://kevinbatdorf.com"
},
{
"name": "Ryan Chandler",
"url": "https://ryangjchandler.co.uk"
},
{
"name": "Simone Todaro",
"url": "https://github.com/SimoTod"
},
{
"name": "Hugo DF",
"url": "https://codewithhugo.com"
}
],
"license": "MIT",
"bugs": {
"url": "https://github.com/alpine-collective/magic-helpers/issues"
},
"homepage": "https://github.com/alpine-collective/magic-helpers#readme",
"dependencies": {},
"peerDependencies": {
"alpinejs": "^2.8"
},
"devDependencies": {
"@babel/preset-env": "^7.13.10",
"@rollup/plugin-babel": "^5.3.0",
"@rollup/plugin-commonjs": "^17.1.0",
"@rollup/plugin-json": "^4.1.0",
"@rollup/plugin-node-resolve": "^11.2.0",
"@testing-library/dom": "^7.30.0",
"@testing-library/jest-dom": "^5.11.9",
"alpinejs": "^2.7.0",
"axios": "^0.21",
"browser-sync": "^2.26.14",
"concurrently": "^6.0.0",
"deep-diff": "^1.0.2",
"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",
"husky": "^5.1.3",
"jest": "^26.6.3",
"jsdom-simulant": "^1.1.2",
"lint-staged": "^10.5.4",
"rollup": "^2.42.1",
"rollup-plugin-filesize": "^9.1.1",
"smoothscroll-polyfill": "^0.4.4"
},
"publishConfig": {
"access": "public"
},
"files": [
"dist/*",
"package.json",
"LICENSE.md",
"README.md"
],
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.js": [
"eslint --fix"
]
}
}