forked from acelaya/react-external-link
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
74 lines (74 loc) · 2.04 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
{
"name": "react-external-link",
"version": "1.1.1",
"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": "[email protected]",
"url": "https://www.alejandrocelaya.com"
},
"keywords": [
"react",
"link",
"external",
"target",
"noopener",
"noreferrer"
],
"scripts": {
"build": "rollup -c",
"build:watch": "rollup -c -w",
"dev": "npm run build:watch",
"test": "jest --colors",
"test:cover": "npm run test -- --coverage --coverageReporters=text --coverageReporters=text-summary --coverageReporters=clover",
"lint": "eslint --ext js,jsx,ts,tsx ./src ./test ./*.js",
"lint:fix": "npm run lint -- --fix"
},
"devDependencies": {
"@testing-library/jest-dom": "^4.1.0",
"@testing-library/react": "^9.1.3",
"@types/jest": "^24.0.18",
"@types/react": "^16.8",
"@types/react-dom": "^16.8",
"@typescript-eslint/eslint-plugin": "^1.13",
"@typescript-eslint/parser": "^2.0.0",
"babel-eslint": "^10.0",
"concurrently": "^4.1.1",
"eslint": "^5.16",
"eslint-config-adidas-babel": "^1.1.0",
"eslint-config-adidas-env": "^1.1.0",
"eslint-config-adidas-react": "^1.1.1",
"eslint-config-adidas-typescript": "^1.0.1",
"eslint-loader": "^2.1.1",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-jest": "^21.22.0",
"eslint-plugin-jsx-a11y": "^6.1.2",
"eslint-plugin-promise": "^4.0.1",
"eslint-plugin-react": "^7.11.1",
"jest": "^24.9.0",
"ocular.js": "^0.1.0",
"prepend-file": "^1.3.1",
"react": "^16.8",
"react-dom": "^16.8",
"rollup": "^1.19.4",
"rollup-plugin-typescript2": "^0.22.1",
"ts-jest": "^24.0.2",
"ts-node": "^8.3.0",
"tslib": "^1.10.0",
"typescript": "^3.5.3"
},
"peerDependencies": {
"react": "^16.8",
"react-dom": "^16.8"
},
"files": [
"dist"
]
}