-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
65 lines (65 loc) · 1.81 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
{
"name": "sliderm",
"version": "1.1.0",
"description": "The most light-weight dependency-free slider and carousel JavaScript library.",
"main": "dist/sliderm.js",
"module": "src/sliderm.js",
"scripts": {
"build": "webpack --mode production",
"watch": "webpack --watch --mode development",
"test": "jest --verbose false",
"coverage": "npm test -- --coverage"
},
"jest": {
"testEnvironment": "jsdom",
"collectCoverageFrom": ["./src/**"]
},
"repository": {
"type": "git",
"url": "git+https://github.com/terrylinooo/sliderm.js.git"
},
"keywords": [
"carousel",
"gallery",
"swipe",
"slide",
"slider",
"slideshow"
],
"author": "Terry L. ( https:://terryl.in )",
"license": "MIT",
"bugs": {
"url": "https://github.com/terrylinooo/sliderm.js/issues"
},
"homepage": "https://sliderm.com",
"devDependencies": {
"@babel/core": "^7.19.1",
"@babel/preset-env": "^7.19.1",
"babel-jest": "^29.2.0",
"babel-loader": "^8.2.5",
"css-loader": "^6.7.1",
"css-minimizer-webpack-plugin": "^4.2.2",
"eslint": "^8.24.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jest": "^27.1.2",
"eslint-plugin-jsx-a11y": "^6.6.1",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.31.8",
"eslint-plugin-react-hooks": "^4.6.0",
"jest": "^29.2.0",
"jest-environment-jsdom": "^29.2.0",
"mini-css-extract-plugin": "^2.6.1",
"prettier": "^2.7.1",
"sass": "^1.55.0",
"sass-loader": "^13.0.2",
"script-loader": "^0.7.2",
"stylelint": "^14.12.1",
"stylelint-config-standard-scss": "^5.0.0",
"stylelint-order": "^5.0.0",
"terser-webpack-plugin": "^5.3.6",
"url-loader": "^4.1.1",
"webpack": "^5.74.0",
"webpack-cli": "^4.10.0"
}
}