-
Notifications
You must be signed in to change notification settings - Fork 17
/
package.json
89 lines (89 loc) · 2.54 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
78
79
80
81
82
83
84
85
86
87
88
89
{
"name": "react-obfuscate",
"version": "3.6.10-2",
"description": "An intelligent React component to obfuscate any contact link",
"files": [
"/lib"
],
"main": "./lib/cjs/index.js",
"module": "./lib/esm/index.js",
"types": "./lib/esm/index.d.ts",
"author": "Coston Perkins <costonperkins@me.com> (https://coston.io)",
"homepage": "https://github.com/coston/react-obfuscate",
"repository": {
"type": "git",
"url": "git+https://github.com/coston/react-obfuscate.git"
},
"bugs": {
"url": "https://github.com/coston/react-obfuscate/issues"
},
"license": "MIT",
"engines": {
"node": ">= 0.10.0"
},
"scripts": {
"start": "next",
"build": "npm run build:esm && npm run build:cjs",
"build:cjs": "tsc --module commonjs --outDir lib/cjs",
"build:esm": "tsc",
"build-site": "next build",
"clean": "rm -rf dist && mkdir dist",
"export": "npm run build-site && next export",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"lint": "eslint '**/*.{js,ts,tsx}'",
"lint:fix": "eslint '**/*.{js,ts,tsx}' --fix",
"coveralls": "jest --coverage && cat ./coverage/lcov.info | coveralls",
"preversion": "npm run test && npm run lint:fix && npm run clean && npm run build && npm run export",
"postpublish": "git push && git push --tag"
},
"devDependencies": {
"@commitlint/cli": "19.4.0",
"@commitlint/config-conventional": "19.2.2",
"@testing-library/jest-dom": "^6.4.8",
"@testing-library/react": "^16.0.0",
"@types/jest": "^29.5.12",
"@typescript-eslint/eslint-plugin": "^8.0.0",
"@typescript-eslint/parser": "^8.0.0",
"coveralls": "3.1.1",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-react": "^7.34.1",
"husky": "9.1.5",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"lint-staged": "15.2.9",
"next": "14.2.6",
"prettier": "3.3.3",
"prop-types": "15.8.1",
"react": "18.3.1",
"react-dom": "18.3.1",
"react-live": "4.1.7",
"react-window-ui": "2.2.0",
"ts-jest": "^29.1.2",
"typescript": "^5.4.5"
},
"peerDependencies": {
"prop-types": ">= 15",
"react": ">= 16.8",
"react-dom": ">= 16.8"
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"eslint --fix"
]
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS",
"pre-commit": "lint-staged"
}
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
}
}