-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
70 lines (70 loc) · 2.25 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
{
"name": "react-bootstrap-range-slider",
"version": "3.0.8",
"description": "A range slider component with tooltips for React Bootstrap that extends the HTML input (type=range) element.",
"keywords": [
"react",
"react-component",
"bootstrap",
"slider",
"range slider",
"input",
"range input"
],
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"repository": "git@github.com:jaywilz/react-bootstrap-range-slider.git",
"author": "Jason Wilson <jasoncwilson@gmail.com>",
"license": "MIT",
"private": false,
"scripts": {
"prepublishOnly": "npm run release",
"release": "npm run build",
"build": "BABEL_ENV=build NODE_ENV=production rollup -c",
"build:dev": "BABEL_ENV=build NODE_ENV=development rollup -c",
"build:examples-umd": "BABEL_ENV=build NODE_ENV=examples rollup -c",
"build:pages": "node_modules/@babel/cli/bin/babel.js docs/js/examples.src.js --out-file docs/js/examples.js --presets=@babel/preset-env,@babel/preset-react",
"test": "cross-env BABEL_ENV=test NODE_ENV=test jest --no-cache",
"test:coverage": "npm test -- --coverage"
},
"jest": {
"moduleNameMapper": {
"\\.(css|scss)$": "<rootDir>/__mocks__/styleMock.js"
}
},
"devDependencies": {
"@babel/cli": "^7.14.8",
"@babel/core": "^7.14.8",
"@babel/plugin-proposal-class-properties": "^7.14.5",
"@babel/preset-env": "^7.14.8",
"@babel/preset-react": "^7.14.5",
"@babel/preset-typescript": "^7.14.5",
"@rollup/plugin-node-resolve": "^13.0.2",
"@rollup/plugin-typescript": "^8.2.3",
"cross-env": "^7.0.3",
"jest": "^27.0.6",
"less": "^4.1.1",
"react": ">=17.0.0",
"react-bootstrap": ">=1.0.0",
"react-dom": ">=17.0.0",
"react-test-renderer": "^17.0.2",
"rollup": "^2.53.3",
"rollup-plugin-babel": "^4.3.3",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-copy": "^3.4.0",
"rollup-plugin-license": "^2.5.0",
"rollup-plugin-replace": "^2.2.0",
"rollup-plugin-sass": "^1.2.2",
"rollup-plugin-ts": "^1.4.0",
"typescript": "^4.3.5"
},
"dependencies": {
"classnames": "^2.3.1",
"prop-types": "^15.7.2"
},
"peerDependencies": {
"react": ">=17.0.0",
"react-bootstrap": ">=1.0.0",
"react-dom": ">=17.0.0"
}
}