forked from abstiles/deluminate
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.07 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
{
"name": "deluminate",
"version": "0.7.7",
"description": "Invert the luminance of a website to make it easier on the eyes.",
"scripts": {
"lint": "jshint *.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": "Andrew Stiles",
"license": "BSD-2-Clause",
"bugs": {
"url": "https://github.com/abstiles/deluminate/issues"
},
"homepage": "https://deluminate.github.io",
"devDependencies": {
"chrome-webstore-upload-cli": "^1.1.1",
"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": 6,
"loopfunc": true,
"laxbreak": true,
"laxcomma": true,
"sub": true,
"asi": true,
"expr": true,
"eqnull": true,
"-W032": true,
"-W041": true
}
}