-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
59 lines (59 loc) · 1.55 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
{
"name": "react-range-step-input",
"version": "1.3.0",
"description": "An <input type=range> that steps up and down on click.",
"main": "build/index.js",
"scripts": {
"dev": "webpack --mode development --watch",
"build": "webpack --mode=production",
"build-demo": "webpack --config webpack.config.docs.js --mode production",
"build-demo-dev": "webpack --config webpack.config.docs.js --mode development --watch",
"eslint": "eslint lib/",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/nikolas/react-range-step-input.git"
},
"keywords": [
"react",
"range-input",
"science",
"astronomy"
],
"author": "Nikolas Nyby",
"license": "GPL-3.0+",
"bugs": {
"url": "https://github.com/nikolas/react-range-step-input/issues"
},
"homepage": "https://github.com/nikolas/react-range-step-input#readme",
"peerDependencies": {
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
"devDependencies": {
"@babel/cli": "^7.1.2",
"@babel/core": "^7.1.2",
"@babel/preset-env": "^7.13.10",
"@babel/preset-react": "^7.12.13",
"@cfaester/enzyme-adapter-react-18": "^0.8.0",
"babel-eslint": "^10.0.1",
"babel-jest": "^29.7.0",
"babel-loader": "^9.1.3",
"eslint": "^9.8.0",
"eslint-plugin-react": "^7.11.1",
"jest": "^29.7.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"webpack": "^5.24.2",
"webpack-cli": "^6.0.1"
},
"babel": {
"presets": [
"@babel/react"
]
},
"dependencies": {
"enzyme": "^3.11.0"
}
}