-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (55 loc) · 1.22 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
{
"name": "luminosity-inverter",
"version": "1.0.0",
"description": "Takes theme files, such as CSS, and inverts any colors inside to the opposite luminosity.",
"main": "./index.js",
"bin": {
"luminosity-invert": "./index.js",
"invert-luminosity": "./index.js"
},
"scripts": {
"lint": "eslint .",
"fix": "eslint . --fix",
"test": "mocha",
"all": "eslint . --fix && mocha"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Maxattax97/luminosity-inverter.git"
},
"keywords": [
"color",
"CIELab",
"RGB",
"HSV",
"HSL",
"CSS",
"style",
"luminosity",
"light",
"dark",
"bright",
"white",
"black"
],
"author": "Max O'Cull",
"license": "MIT",
"bugs": {
"url": "https://github.com/Maxattax97/luminosity-inverter/issues"
},
"homepage": "https://github.com/Maxattax97/luminosity-inverter#readme",
"dependencies": {
"culori": "^0.8.2",
"fs-extra": "^7.0.1",
"get-stdin": "^7.0.0",
"globby": "^9.2.0",
"yargs": "^13.2.2"
},
"devDependencies": {
"chai": "^4.2.0",
"eslint": "^5.16.0",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-plugin-import": "^2.17.2",
"mocha": "^6.1.4"
}
}