-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.51 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.51 KB
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
{
"name": "@faesslich/expand",
"version": "1.1.0",
"description": "Expand - the lightweight pure JS carousel/slider",
"publishConfig": {
"registry": "https://npm.pkg.github.com/"
},
"type": "module",
"main": "dist/expand.umd.min.js",
"module": "dist/expand.min.js",
"sideEffects": false,
"devDependencies": {
"@babel/cli": "^7.22.10",
"@babel/core": "^7.22.10",
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
"@babel/plugin-transform-runtime": "^7.22.10",
"@babel/preset-env": "^7.22.10",
"@babel/runtime": "^7.22.10",
"@rollup/plugin-babel": "^6.0.3",
"@rollup/plugin-commonjs": "^25.0.4",
"@rollup/plugin-json": "^6.0.0",
"@rollup/plugin-node-resolve": "^15.2.1",
"@rollup/plugin-terser": "^0.4.3",
"@testing-library/dom": "^9.3.1",
"@testing-library/jest-dom": "^6.0.1",
"autoprefixer": "^10.4.15",
"babel-eslint": "^10.1.0",
"eslint": "^8.47.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.28.1",
"jest": "^29.6.3",
"jest-environment-jsdom": "^29.6.3",
"rollup": "^3.28.1",
"rollup-plugin-postcss": "^4.0.2",
"sass": "^1.66.1"
},
"scripts": {
"build": "rollup -c",
"watch": "rollup -c -w",
"test": "jest --watch"
},
"files": [
"dist"
],
"repository": "faesslich/expand",
"author": "Fabian Esser <post@fe-dev.com> (https://fe-dev.com/)",
"license": "MIT",
"bugs": {
"url": "https://github.com/faesslich/expand/issues"
},
"homepage": "https://fe-dev.com/expand"
}