-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
77 lines (77 loc) · 2.22 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
77
{
"name": "pretty-rating-react",
"version": "2.2.0",
"description": "Pretty rating formatter with React FontAwesome icons",
"main": "./lib/cjs/index.js",
"module": "./lib/esm/index.js",
"types": "./lib/esm/index.d.ts",
"files": [
"/lib"
],
"repository": "https://github.com/Proskynete/pretty-rating-react",
"author": {
"name": "Eduardo Esteban Álvarez Castañeda",
"email": "soy@eduardoalvarez.dev",
"url": "https://eduardoalvarez.dev"
},
"license": "MIT",
"scripts": {
"build": "rm -rf lib && npm run build:esm && npm run build:cjs",
"build:esm": "tsc",
"build:cjs": "tsc --module commonjs --outDir lib/cjs",
"lint": "eslint . --ext .ts ./src",
"lint:fix": "eslint . --ext .ts ./src --fix",
"test": "jest",
"test:update-snapshots": "jest --updateSnapshot",
"test:coverage": "jest --coverage",
"test:coveralls": "jest --coverage && coveralls < coverage/lcov.info",
"prepare": "husky install"
},
"keywords": [
"Typescript",
"Ts",
"React",
"Reactjs",
"Rating",
"Rating Component",
"FontAwesome"
],
"peerDependencies": {
"@fortawesome/fontawesome-svg-core": "^1.2.36",
"@fortawesome/free-solid-svg-icons": "^5.15.4",
"@fortawesome/react-fontawesome": "^0.1.16",
"react": "^17.0.2 || ^18.0.0-0",
"react-dom": "^17.0.2 || ^18.0.0-0"
},
"dependencies": {
"react": "^17.0.2 || ^18.0.0-0",
"react-dom": "^17.0.2 || ^18.0.0-0"
},
"devDependencies": {
"@fortawesome/fontawesome-svg-core": "^1.2.36",
"@fortawesome/free-solid-svg-icons": "^5.15.4",
"@fortawesome/react-fontawesome": "^0.1.16",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^12.1.3",
"@testing-library/user-event": "^14.4.3",
"@types/jest": "^29.0.0",
"@types/node": "^18.7.14",
"@types/prettier": "^2.4.2",
"@types/react": "^18.0.18",
"@types/react-dom": "^18.0.6",
"coveralls": "^3.1.1",
"eslint": "^8.31.0",
"eslint-config-airbnb-typescript": "^17.0.0",
"eslint-config-prettier": "^8.6.0",
"eslint-plugin-jest": "^27.2.1",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-testing-library": "^5.9.1",
"husky": "^8.0.3",
"jest": "^28.1.3",
"jest-environment-jsdom": "^29.3.1",
"prettier": "^2.8.2",
"ts-jest": "^28.0.8",
"ts-node": "^10.9.1",
"typescript": "^4.4.4"
}
}