This repository was archived by the owner on Jul 1, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
77 lines (77 loc) · 2.37 KB
/
package.json
File metadata and controls
77 lines (77 loc) · 2.37 KB
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
77
{
"name": "lepre",
"version": "0.7.0",
"description": "Lightweight Emoji Picker for React Enthusiasts",
"homepage": "https://pandasekh.github.io/lepre",
"author": {
"name": "Alessio Franceschi",
"email": "alessiofranceschi2@gmail.com",
"url": "https://alessiofranceschi.me/"
},
"license": "MIT",
"repository": "PandaSekh/lepre",
"main": "dist/index.js",
"esmodule": "dist/index.modern.js",
"unpkg": "dist/index.umd.js",
"module": "dist/index.module.js",
"source": "src/index.ts",
"types": "./dist/index.d.ts",
"engines": {
"node": ">=10"
},
"jest": {
"collectCoverageFrom": [
"src/*.{ts,tsx}",
"src/lib/*.{ts,tsx}"
]
},
"scripts": {
"build": "microbundle-crl --tsconfig ./tsconfig.build.json",
"start": "microbundle-crl watch --tsconfig ./tsconfig.build.json",
"prepare": "run-s build",
"test": "run-s test:unit test:lint test:build && codecov",
"test:build": "run-s build",
"test:lint": "eslint .",
"test:unit": "cross-env CI=1 react-scripts test --env=jsdom --coverage --watchAll=false",
"test:watch": "react-scripts test --env=jsdom",
"predeploy": "cd example && npm install && npm run build",
"deploy": "gh-pages -d example/build"
},
"peerDependencies": {
"react": ">=16.8.0"
},
"devDependencies": {
"@babel/eslint-parser": "^7.18.9",
"@testing-library/jest-dom": "^5.16.2",
"@testing-library/react": "^15.0.7",
"@testing-library/react-hooks": "^8.0.1",
"@typescript-eslint/eslint-plugin": "^5.42.0",
"@typescript-eslint/parser": "^5.42.0",
"cross-env": "^7.0.2",
"eslint": "^8.9.0",
"eslint-config-prettier": "^9.1.0",
"eslint-config-react-app": "^7.0.0",
"eslint-config-standard": "^17.0.0",
"eslint-config-standard-react": "^13.0.0",
"eslint-plugin-flowtype": "^8.0.3",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-n": "^16.0.1",
"eslint-plugin-node": "^11.0.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-promise": "^6.0.0",
"eslint-plugin-react": "^7.17.0",
"eslint-plugin-react-hooks": "^4.6.0",
"gh-pages": "^5.0.0",
"microbundle-crl": "^0.13.10",
"npm-run-all": "^4.1.5",
"prettier": "^2.0.4",
"react": "^18.0.0",
"react-dom": "^18.0.0",
"react-scripts": "^5.0.0",
"typescript": "^5.0.4"
},
"files": [
"dist"
]
}