-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.21 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
{
"name": "@lindelwa122/image-slider",
"version": "0.1.1",
"description": "A small JS library for creating image carousels.",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "webpack",
"start": "webpack serve --open",
"prepare": "husky install"
},
"author": "Lindelwa",
"license": "MIT",
"devDependencies": {
"css-loader": "^6.8.1",
"eslint": "^8.51.0",
"eslint-config-google": "^0.14.0",
"eslint-config-prettier": "^9.0.0",
"husky": "^8.0.3",
"lint-staged": "^15.0.1",
"nanoid": "^5.0.2",
"prettier": "3.0.3",
"style-loader": "^3.3.3",
"webpack": "^5.88.2",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^4.15.1"
},
"dependencies": {
"@dom-manipulation-library/dml": "^1.0.0"
},
"lint-staged": {
"**/*": "prettier --write --ignore-unknown"
},
"repository": {
"type": "git",
"url": "git+https://github.com/lindelwa122/image-slider.git"
},
"keywords": [
"image",
"carousel",
"image carousel",
"slider"
],
"bugs": {
"url": "https://github.com/lindelwa122/image-slider/issues"
},
"homepage": "https://github.com/lindelwa122/image-slider#readme"
}