This repository has been archived by the owner on Jun 5, 2021. It is now read-only.
forked from swiftcarrot/react-input-slider
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
70 lines (70 loc) · 1.79 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-input-slider",
"version": "5.1.7",
"description": "React input slider component",
"main": "dist/index.cjs.js",
"module": "dist/index.esm.js",
"types": "index.d.ts",
"sideEffects": false,
"scripts": {
"build": "rollup -c",
"test": "NODE_ENV=production jest --coverage",
"prepublishOnly": "npm test && npm run build",
"watch": "rollup -cw",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook"
},
"repository": {
"type": "git",
"url": "git+https://github.com/swiftcarrot/react-input-slider.git"
},
"bugs": {
"url": "https://github.com/swiftcarrot/react-input-slider/issues"
},
"keywords": [
"input",
"react",
"react-component",
"slider"
],
"files": [
"index.d.ts",
"dist"
],
"author": "Wang Zuo <[email protected]> (https://swiftcarrot.com)",
"homepage": "https://swiftcarrot.dev/react-input-slider",
"license": "MIT",
"dependencies": {
"@babel/runtime": "^7.9.2",
"@emotion/core": "^10.0.14"
},
"devDependencies": {
"@babel/core": "^7.9.0",
"@rollup/plugin-babel": "^5.0.0",
"@rollup/plugin-commonjs": "^11.1.0",
"@rollup/plugin-node-resolve": "^7.1.3",
"@storybook/addon-actions": "^5.3.18",
"@storybook/addon-links": "^5.3.18",
"@storybook/addons": "^5.3.18",
"@storybook/react": "^5.3.18",
"babel-jest": "^25.2.4",
"babel-loader": "^8.1.0",
"babel-preset-swiftcarrot": "^1.1.0",
"jest": "^25.2.4",
"prettier": "^1.19.1",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"react-test-renderer": "^16.8.6",
"rollup": "^2.8.2"
},
"peerDependencies": {
"react": "^16.8.4",
"react-dom": "^16.8.4"
},
"jest": {
"collectCoverage": true,
"collectCoverageFrom": [
"src/**/*.js"
]
}
}