-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 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
54
{
"name": "flex-gallery",
"version": "0.1.10",
"description": "A responsive lightbox gallery with flexbox and progressive image loading.",
"module": "./src/js/flex-gallery.js",
"exports": {
"import": "./src/js/flex-gallery.js",
"sass": "./src/scss/flex-gallery.scss",
"style": "./dist/css/flex-gallery.css",
"default": "./src/js/flex-gallery.js"
},
"style": "./dist/css/flex-gallery.css",
"repository": {
"type": "git",
"url": "git+https://github.com/flostrasser/flex-gallery.git"
},
"keywords": [
"responsive",
"flexbox",
"gallery",
"lightbox",
"progressive",
"image"
],
"author": "Florian Strasser",
"license": "MIT",
"bugs": {
"url": "https://github.com/flostrasser/flex-gallery/issues"
},
"homepage": "https://github.com/flostrasser/flex-gallery#readme",
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^5.52.0",
"@typescript-eslint/parser": "^5.52.0",
"eslint": "^8.34.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^8.6.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-prettier": "^4.2.1",
"husky": "^8.0.3",
"lint-staged": "^13.1.2",
"prettier": "^2.8.4",
"sass": "^1.58.3"
},
"scripts": {
"dev": "npm run watch:sass & npx serve",
"watch:sass": "sass src/scss:dist/css --watch",
"build:sass": "sass src/scss:dist/css",
"lint": "eslint ./",
"prepare": "husky install"
},
"lint-staged": {
"*.{js,ts}": "eslint --fix"
}
}