-
Notifications
You must be signed in to change notification settings - Fork 43
/
package.json
60 lines (60 loc) · 1.28 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
{
"type": "module",
"name": "deluminate",
"version": "1.0.0",
"description": "Invert the luminance of a website to make it easier on the eyes.",
"scripts": {
"lint": "eslint *.js",
"test": "jasmine",
"deploy": "./deploy --release",
"deploy-dev": "./deploy"
},
"repository": {
"type": "git",
"url": "git+https://github.com/abstiles/deluminate.git"
},
"keywords": [
"chrome",
"extension",
"invert",
"luminance",
"dark",
"contrast"
],
"author": "Anjou Stiles",
"license": "BSD-2-Clause",
"bugs": {
"url": "https://github.com/abstiles/deluminate/issues"
},
"homepage": "https://deluminate.github.io",
"devDependencies": {
"@eslint/js": "^9.8.0",
"chrome-webstore-upload-cli": "^1.1.1",
"eslint": "^9.8.0",
"globals": "^15.9.0",
"jasmine": "^2.5.3",
"jasmine-reporters": "^2.2.0",
"jsdom": "^9.9.1",
"jshint": "^2.9.4",
"mock-local-storage": "^1.0.2"
},
"jshintConfig": {
"esversion": 13,
"browser": true,
"loopfunc": true,
"laxbreak": true,
"laxcomma": true,
"sub": true,
"asi": true,
"expr": true,
"eqnull": true,
"-W032": true,
"-W041": true
},
"eslintConfig": {
"env": {
"browser": true,
"webextensions": true
}
}
}