-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
88 lines (88 loc) · 2.43 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
{
"name": "grid-accordion-js",
"description": "Modular grid accordion built in Vanilla JavaScript.",
"version": "1.0.1",
"homepage": "https://bqworks.net/grid-accordion/",
"author": {
"name": "bqworks",
"url": "https://bqworks.net/"
},
"contributors": [
{
"name": "David Ghiurau",
"email": "[email protected]"
}
],
"repository": {
"type": "git",
"url": "https://github.com/bqworks/grid-accordion-js"
},
"bugs": {
"url": "https://github.com/bqworks/grid-accordion-js/issues"
},
"type": "module",
"main": "./entry/index.js",
"exports": {
".": "./entry/index.js",
"./css": "./entry/style-bundle.js",
"./css/core": "./src/core/grid-accordion.css",
"./css/buttons": "./src/add-ons/buttons/buttons.css",
"./css/layers": "./src/add-ons/layers/layers.css",
"./css/touch-swipe": "./src/add-ons/touch-swipe/touch-swipe.css",
"./css/video": "./src/add-ons/video/video.css"
},
"keywords": [
"grid",
"accordion",
"slideshow",
"gallery",
"touch",
"swipe",
"javascript",
"modular",
"grid-accordion",
"responsive",
"layers",
"video"
],
"license": "MIT",
"scripts": {
"build": "cross-env mode=production webpack",
"start": "cross-env mode=development webpack",
"serve": "serve -p 3000",
"test": "jest --config jest.config.json",
"test:pptr": "cross-env JEST_PUPPETEER_CONFIG=./jest-puppeteer.config.json jest --config jest.pptr.config.json",
"test:all": "eslint ./test && npm run test && npm run test:pptr"
},
"devDependencies": {
"@babel/core": "^7.24.7",
"@babel/preset-env": "^7.24.7",
"babel-loader": "^9.1.3",
"canvas": "^2.11.2",
"cross-env": "^7.0.3",
"css-loader": "^7.1.2",
"css-minimizer-webpack-plugin": "^7.0.0",
"eslint": "^8.57.0",
"eslint-webpack-plugin": "^4.2.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"jest-puppeteer": "^10.0.1",
"mini-css-extract-plugin": "^2.9.0",
"postcss": "^8.4.38",
"postcss-loader": "^8.1.1",
"postcss-preset-env": "^9.5.14",
"puppeteer": "^22.11.0",
"serve": "^14.2.3",
"style-loader": "^4.0.0",
"stylelint": "^16.6.1",
"stylelint-config-standard": "^36.0.0",
"stylelint-webpack-plugin": "^5.0.1",
"webpack": "^5.92.0",
"webpack-cli": "^5.1.4",
"webpack-merge": "^5.10.0"
},
"dependencies": {
"@babel/runtime": "^7.24.7",
"core-js": "^3.37.1"
}
}