-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
62 lines (62 loc) · 1.67 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
{
"name": "react-external-link",
"version": "1.2.0",
"license": "MIT",
"main": "dist/index.cjs.js",
"module": "dist/index.esm.js",
"types": "dist/index.d.ts",
"repository": {
"url": "https://github.com/acelaya/react-external-link",
"type": "git"
},
"author": {
"name": "Alejandro Celaya",
"email": "alejandro@alejandrocelaya.com",
"url": "https://www.alejandrocelaya.com"
},
"keywords": [
"react",
"link",
"external",
"target",
"noopener",
"noreferrer"
],
"scripts": {
"build": "rollup -c && mv dist/src/* dist && rm -rf dist/src dist/test",
"build:watch": "rollup -c -w",
"dev": "npm run build:watch",
"test": "jest --colors",
"test:ci": "npm run test -- --coverage --coverageReporters=text --coverageReporters=text-summary --coverageReporters=clover",
"lint": "eslint --ext ts,tsx ./src ./test",
"lint:fix": "npm run lint -- --fix"
},
"devDependencies": {
"@rollup/plugin-typescript": "^11.0.0",
"@shlinkio/eslint-config-js-coding-standard": "~2.1.0",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^13.4.0",
"@types/jest": "^29.4.0",
"@types/react": "^18.0.28",
"@types/react-dom": "^18.0.10",
"concurrently": "^7.0.0",
"eslint": "^8.34.0",
"eslint-loader": "^4.0.2",
"jest": "^29.4.2",
"jest-environment-jsdom": "^29.4.2",
"prepend-file": "^2.0.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"rollup": "^3.15.0",
"ts-jest": "^29.0.5",
"tslib": "^2.3.1",
"typescript": "^4.9.5"
},
"peerDependencies": {
"react": "^17.0 || ^18.0",
"react-dom": "^17.0 || ^18.0"
},
"files": [
"dist"
]
}