-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
executable file
·40 lines (40 loc) · 1.11 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
{
"name": "react-select-tile",
"version": "1.0.10",
"description": "Yet another Select-Box based on react and emotion",
"main": "dist/index.js",
"scripts": {
"compile": "rm -rf dist && tsc -p . && node fuse",
"demo": "rm -rf .cache && parcel -p 5555 demo/src/index.html --out-dir demo/dist",
"publish": "git tag -a $npm_package_version -m '$npm_package_version' && git push --tags"
},
"keywords": [
"react",
"select"
],
"author": "Sepehr Aliakbari",
"license": "MIT",
"bugs": {
"url": "https://github.com/sepehr1313/react-select-tile/issues"
},
"homepage": "https://github.com/sepehr1313/react-select-tile#readme",
"peerDependencies": {
"react": ">= 16.x",
"react-dom": ">= 16.x"
},
"dependencies": {
"@emotion/core": "^10.0.27"
},
"devDependencies": {
"@types/react": "^16.9.13",
"@types/react-dom": "^16.9.4",
"@types/react-window": "^1.8.1",
"fuse-box": "^3.7.1",
"object-assign": "^4.1.1",
"parcel-bundler": "^1.12.4",
"react": ">= 16.12.0",
"react-dom": ">= 16.12.0",
"terser": "^4.4.0",
"typescript": "^3.7.2"
}
}