-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
65 lines (65 loc) · 1.97 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
{
"name": "color-links",
"version": "1.0.1",
"description": "Help Color Blind Individuals See Visited Links",
"main": "index.js",
"scripts": {
"lint": "eslint ./src",
"test": "jest",
"start": "parcel src/color-links.html src/content-scripts/contentscript.ts",
"build": "NODE_ENV=production rm -rf dist && parcel build src/color-links.html src/content-scripts/contentscript.ts --public-url ./ --no-cache",
"zip": "yarn build && zip -r -X colorlinks.zip dist/*"
},
"publishConfig": {
"registry": "https://npm.pkg.github.com/"
},
"repository": {
"type": "git",
"url": "ssh://git@github.com:therynamo/color-links.git"
},
"keywords": [
"color",
"blind",
"chrome",
"extension"
],
"author": "therynamo",
"license": "ISC",
"bugs": {
"url": "https://github.com/therynamo/color-links/issues"
},
"homepage": "https://github.com/therynamo/color-links#readme",
"dependencies": {
"del": "^2.2.0",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"urijs": "^1.19.6"
},
"devDependencies": {
"@types/chrome": "^0.0.107",
"@babel/core": "^7.9.6",
"@babel/preset-env": "^7.9.6",
"@babel/preset-react": "^7.9.4",
"@babel/preset-typescript": "^7.9.0",
"@testing-library/jest-dom": "^5.7.0",
"@testing-library/react": "^10.0.4",
"@types/jest": "^25.2.1",
"@types/urijs": "^1.19.8",
"@typescript-eslint/eslint-plugin": "^2.24.0",
"@typescript-eslint/parser": "^2.32.0",
"babel-jest": "^26.0.1",
"eslint": "^7.0.0",
"eslint-config-airbnb-typescript": "^7.2.1",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-jest": "^23.10.0",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-react": "^7.19.0",
"eslint-plugin-react-hooks": "^4.0.2",
"jest": "^26.0.1",
"jest-webextension-mock": "^3.5.4",
"parcel-bundler": "^1.12.4",
"parcel-plugin-static-files-copy": "^2.3.1",
"typescript": "^3.8.3"
}
}