-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
55 lines (55 loc) · 1.29 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
{
"name": "react-side-sheet",
"version": "0.1.19",
"description": "SideSheet component",
"main": "dist/index.cjs.js",
"module": "dist/index.esm.js",
"sideEffects": false,
"files": [
"dist"
],
"scripts": {
"build": "rm -rf dist && NODE_ENV=production rollup -c",
"prepublishOnly": "npm run build"
},
"publishConfig": {
"access": "public"
},
"dependencies": {
"@babel/runtime": "^7.5.5",
"@emotion/core": "^10.0.14",
"@xkit/dialog": "^0.2.31"
},
"author": "Wang Zuo <[email protected]> (https://swiftcarrot.com)",
"license": "MIT",
"peerDependencies": {
"react": "^16.8.6",
"react-dom": "^16.8.6"
},
"devDependencies": {
"@rollup/plugin-babel": "^5.0.0",
"@rollup/plugin-commonjs": "^11.1.0",
"@rollup/plugin-node-resolve": "^7.1.3",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"rollup": "^1.17.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/swiftcarrot/react-side-sheet.git"
},
"bugs": {
"url": "https://github.com/swiftcarrot/react-side-sheet/issues"
},
"keywords": [
"react",
"react-component"
],
"homepage": "https://swiftcarrot.dev/react-side-sheet",
"jest": {
"collectCoverage": true,
"collectCoverageFrom": [
"src/**/*.js"
]
}
}