-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.49 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
{
"name": "avalynx-loader",
"title": "AvalynxLoader",
"description": "AvalynxLoader is a lightweight JavaScript library designed to provide a loading overlay for DOM elements. Based on Bootstrap >=5.3 without any framework dependencies.",
"version": "0.0.1",
"license": "MIT",
"main": "dist/js/avalynx-loader.js",
"module": "dist/js/avalynx-loader.esm.js",
"files": [
"dist/js/avalynx-loader.js",
"dist/js/avalynx-loader.esm.js"
],
"keywords": [
"avalynx",
"loader",
"bootstrap",
"bootstrap5",
"component",
"ajax",
"spinner"
],
"ignore": [
"package.json"
],
"author": {
"name": "Juergen Schwind an the AvalynxLoader authors",
"url": "https://github.com/avalynx/avalynx-loader/graphs/contributors"
},
"homepage": "https://github.com/avalynx/",
"repository": {
"type": "git",
"url": "git+https://github.com/avalynx/avalynx-loader.git"
},
"bugs": {
"url": "https://github.com/avalynx/avalynx-loader/issues"
},
"scripts": {
"test": "jest",
"build": "shx rm -rf dist; shx mkdir -p dist/js/; shx cp src/js/avalynx-loader.js dist/js/avalynx-loader.js; shx cp src/js/avalynx-loader.js dist/js/avalynx-loader.esm.js; node build.js dist/js/avalynx-loader.esm.js"
},
"dependencies": {
"bootstrap": ">=5.3"
},
"devDependencies": {
"@babel/core": "^7",
"@babel/preset-env": "^7",
"babel-jest": "^29",
"jest": "^29",
"jest-environment-jsdom": "^29",
"shelljs": "^0",
"shx": "^0"
}
}