This repository has been archived by the owner on Sep 8, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 32
/
package.json
56 lines (56 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
{
"name": "claire",
"description": "Browser extension for Google Chrome that shows an icon in the address bar (page action) which turns orange when the site you are browsing is served by [CloudFlare](http://www.cloudflare.com).",
"license": "BSD-3-Clause",
"dependencies": {},
"devDependencies": {
"css-loader": "^0.28.10",
"eslint": "^3.13.1",
"eslint-config-xo-space": "^0.15.0",
"eslint-formatter-pretty": "^1.1.0",
"eslint-plugin-jest": "^21.0.2",
"eslint-plugin-no-use-extend-native": "^0.3.12",
"eslint-plugin-promise": "^3.4.0",
"eslint-plugin-unicorn": "^1.0.0",
"extract-text-webpack-plugin": "^3.0.2",
"file-loader": "^1.1.9",
"jest": "^20.0.4",
"jquery": "^3.3.1",
"octicons": "^4.0.0",
"purecss": "^1.0.0",
"rimraf": "^2.5.4",
"style-loader": "^0.20.2",
"url-loader": "^0.6.2",
"webpack": "^3.0.0"
},
"scripts": {
"build": "rimraf dist && webpack && cp -R source/{manifest.json,page-action-popup.html,options.html,images} dist/",
"test": "eslint --format=node_modules/eslint-formatter-pretty --ignore-pattern source/airports.js source && jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/cloudflare/claire.git"
},
"bugs": {
"url": "https://github.com/cloudflare/claire/issues"
},
"homepage": "https://github.com/cloudflare/claire#readme",
"eslintConfig": {
"env": {
"browser": true,
"amd": true,
"webextensions": true,
"jest/globals": true
},
"plugins": [
"no-use-extend-native",
"promise",
"unicorn",
"jest"
],
"extends": [
"xo-space",
"plugin:jest/recommended"
]
}
}