-
Notifications
You must be signed in to change notification settings - Fork 35
/
package.json
76 lines (76 loc) · 1.99 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
{
"name": "react-input-color",
"version": "4.0.1",
"description": "React input color component with hsv color picker",
"main": "dist/index.cjs.js",
"module": "dist/index.esm.js",
"types": "index.d.ts",
"sideEffects": false,
"scripts": {
"build": "rm -rf dist && NODE_ENV=production rollup -c",
"test": "jest --coverage",
"prepublishOnly": "npm test && npm run build",
"watch": "rollup -cw",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook"
},
"files": [
"index.d.ts",
"dist"
],
"keywords": [
"color",
"color-picker",
"input",
"picker",
"react",
"react-component"
],
"author": "Wang Zuo",
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.9.0",
"@rollup/plugin-commonjs": "^11.0.2",
"@rollup/plugin-node-resolve": "^7.1.1",
"@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": "^2.2.1",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"react-test-renderer": "^16.8.6",
"rollup": "^2.3.2",
"rollup-plugin-babel": "^4.4.0"
},
"dependencies": {
"@babel/runtime": "^7.9.2",
"@emotion/core": "^10.0.14",
"@swiftcarrot/color-fns": "^3.0.4",
"@xkit/popover": "^0.1.20",
"react-input-number": "^5.0.18",
"react-input-slider": "^5.1.2"
},
"peerDependencies": {
"react": "^16.8.4 || ^17.0.0 || ^18.0.0",
"react-dom": "^16.8.4 || ^17.0.0 || ^18.0.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/swiftcarrot/react-input-color.git"
},
"bugs": {
"url": "https://github.com/swiftcarrot/react-input-color/issues"
},
"homepage": "https://swiftcarrot.dev/react-input-color",
"jest": {
"collectCoverage": true,
"collectCoverageFrom": [
"src/**/*.js"
]
}
}