forked from whoisandy/react-rangeslider
-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
executable file
·136 lines (136 loc) · 4.61 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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
{
"name": "@appigram/react-rangeslider",
"version": "2.2.22",
"description": "A lightweight react component that acts as a HTML5 input range slider polyfill",
"main": "lib/index.js",
"scripts": {
"clean:lib": "del lib umd",
"clean:docs": "del public",
"clean": "npm run clean:lib && npm run clean:docs",
"lint": "eslint src",
"lint:fix": "eslint --fix src",
"test": "npm run lint && jest --env=./jest-env.js",
"coverage": "npm test -- --coverage",
"start": "cross-env NODE_ENV=development node -r ./docs/server.js",
"build:less": "lessc ./src/Rangeslider.less ./lib/index.css",
"build:less:umd": "lessc ./src/Rangeslider.less ./umd/rangeslider.css",
"build:less:umd:min": "lessc --clean-css ./src/Rangeslider.less ./umd/rangeslider.min.css",
"build:lib": "cross-env NODE_ENV=production babel ./src -d ./lib --ignore __tests__",
"build:umd": "cross-env NODE_ENV=production webpack ./src/index.js --output-path ./umd/rangeslider.js",
"build:min": "cross-env NODE_ENV=production webpack --mode=production ./src/index.js --output-path ./umd/rangeslider.min.js",
"build:docs": "cross-env NODE_ENV=production webpack --mode=production --config=docs/webpack.config.js",
"build": "npm run build:less && npm run build:lib && npm run build:umd && npm run build:min && npm run build:less:umd && npm run build:less:umd:min",
"prebuild": "npm run clean:lib",
"docs": "npm run clean:docs && npm run build:docs && cpy docs/favicon.ico public/",
"deploy": "npm run docs && gh-pages -d public",
"postpublish": "git push origin master --follow-tags",
"minor": "npm version minor && npm publish",
"major": "npm version major && npm publish",
"patch": "npm version patch && npm publish"
},
"repository": {
"type": "git",
"url": "https://github.com/appigram/react-rangeslider.git"
},
"files": [
"lib",
"umd"
],
"keywords": [
"rangeslider",
"range-slider",
"react-rangeslider",
"input",
"range",
"react",
"slider"
],
"author": {
"name": "Eugene Sysmanov",
"email": "[email protected]",
"url": "https://github.com/appigram"
},
"engines": {
"node": ">=14"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/appigram/react-rangeslider/issues"
},
"homepage": "https://github.com/appigram/react-rangeslider#readme",
"devDependencies": {
"@babel/cli": "^7.24.1",
"@babel/core": "^7.24.4",
"@babel/eslint-parser": "^7.24.1",
"@babel/plugin-proposal-class-properties": "^7.18.6",
"@babel/plugin-proposal-object-rest-spread": "^7.20.7",
"@babel/plugin-transform-react-jsx": "^7.23.4",
"@babel/preset-env": "^7.24.4",
"@babel/preset-react": "^7.24.1",
"@babel/register": "^7.23.7",
"@wojtekmaj/enzyme-adapter-react-17": "^0.8.0",
"autoprefixer": "^10.4.19",
"babel-jest": "^29.7.0",
"babel-loader": "^9.1.3",
"cpy-cli": "^4.2.0",
"commander": "10.0.1",
"cross-env": "^7.0.3",
"css-loader": "^6.11.0",
"del-cli": "^5.1.0",
"enzyme": "^3.11.0",
"eslint": "^8.48.0",
"eslint-config-standard": "^17.1.0",
"eslint-config-standard-jsx": "^11.0.0",
"eslint-config-standard-react": "^13.0.0",
"eslint-loader": "^4.0.2",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-n": "^15.7.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-react": "^7.34.1",
"eslint-plugin-standard": "^5.0.0",
"express": "^4.19.2",
"file-loader": "^6.2.0",
"gh-pages": "^6.1.1",
"highlight.js": "^11.9.0",
"html-webpack-plugin": "^5.6.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"jest-environment-jsdom-global": "^4.0.0",
"less": "^4.2.0",
"less-loader": "^11.1.4",
"less-plugin-clean-css": "^1.5.1",
"marked": "^11.2.0",
"mini-css-extract-plugin": "^2.9.0",
"open-cli": "^7.2.0",
"postcss": "^8.4.38",
"postcss-loader": "^7.3.4",
"prettier": "^3.2.5",
"prop-types": "^15.8.1",
"raw-loader": "^4.0.2",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-ga": "^3.3.1",
"react-github-button": "^0.1.11",
"react-test-renderer": "^18.3.1",
"style-loader": "^3.3.4",
"url-loader": "^4.1.1",
"webpack": "^5.91.0",
"webpack-cli": "^5.1.4",
"webpack-dev-middleware": "^7.2.1",
"webpack-hot-middleware": "^2.26.1"
},
"dependencies": {
"classnames": "^2.5.1",
"resize-observer-polyfill": "^1.5.1"
},
"peerDependencies": {
"react": "^18.2.0"
},
"jest": {
"moduleNameMapper": {
".*\\.less$": "<rootDir>/src/"
}
}
}