-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
77 lines (77 loc) · 2.78 KB
/
package.json
File metadata and controls
77 lines (77 loc) · 2.78 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
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
{
"name": "slider-plugin-jquery",
"version": "1.0.0",
"description": "Четвертое задание - плагин для [jQuery](https://jquery.com), в котором выполнен функционал «бегунка» (также называемого слайдером) - специальный контрол, который позволяет перетягиванием задавать какое-то числовое значение.",
"main": "webpack.config.js",
"scripts": {
"test": "jest",
"test:coverage": "jest --coverage",
"test:watch": "jest --watch --coverage",
"start": "cross-env NODE_ENV=development webpack serve --mode development",
"dev": "cross-env NODE_ENV=development webpack --mode development",
"build": "webpack --mode production",
"lint": "eslint source",
"lint:fix": "eslint source --fix",
"deploy": "npm run build && gh-pages -d dist",
"stylelint": "stylelint \"source/**/*.scss\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/yarlykov/slider-plugin-jquery.git"
},
"browserslist": "> 0.25%, not dead",
"keywords": [
"js",
"ts",
"jquery"
],
"author": "Roman Yarlykov <yarlykov92@gmail.com>",
"license": "ISC",
"bugs": {
"url": "https://github.com/yarlykov/slider-plugin-jquery/issues"
},
"homepage": "https://github.com/yarlykov/slider-plugin-jquery#readme",
"devDependencies": {
"@babel/preset-env": "^7.15.6",
"@babel/preset-typescript": "^7.15.0",
"@types/jest": "^27.0.1",
"@types/jquery": "^3.5.6",
"@typescript-eslint/eslint-plugin": "^4.31.1",
"@typescript-eslint/parser": "^4.31.1",
"babel-jest": "^27.2.0",
"babel-loader": "^8.2.2",
"babel-plugin-transform-class-properties": "^6.24.1",
"copy-webpack-plugin": "^9.0.1",
"cross-env": "^7.0.3",
"css-loader": "^6.2.0",
"eslint": "^7.32.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-fsd": "^1.0.1",
"eslint-plugin-import": "^2.24.2",
"eslint-plugin-jest": "^24.4.0",
"gh-pages": "^3.2.3",
"html-webpack-plugin": "^5.3.2",
"jest": "^27.2.0",
"mini-css-extract-plugin": "^2.3.0",
"node-sass": "^6.0.0",
"prettier": "^2.4.1",
"pug": "^3.0.2",
"pug-loader": "^2.4.0",
"sass-loader": "^12.1.0",
"stylelint": "^13.13.1",
"stylelint-config-prettier": "^8.0.2",
"stylelint-config-rational-order": "^0.1.2",
"stylelint-config-standard": "^22.0.0",
"stylelint-order": "^4.1.0",
"stylelint-prettier": "^1.2.0",
"stylelint-scss": "^3.21.0",
"terser-webpack-plugin": "^5.2.4",
"ts-loader": "^9.2.6",
"typescript": "^4.4.4",
"webpack": "^5.52.1",
"webpack-cli": "^4.8.0",
"webpack-dev-server": "^4.2.1",
"webpack-merge": "^5.8.0"
}
}