-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
63 lines (63 loc) · 1.56 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
{
"name": "hex-to-css-filter-library",
"version": "2.0.0",
"author": {
"name": "Blake Gearin",
"email": "hello@blakeg.me",
"url": "https://blakegearin.com"
},
"license": "MIT",
"description": "Library to access a remote database of CSS filters to change HTML elements to any hex color code.",
"homepage": "https://github.com/blakegearin/hex-to-css-filter-library",
"repository": {
"type": "git",
"url": "git+https://github.com/blakegearin/hex-to-css-filter-library.git"
},
"bugs": {
"url": "https://github.com/blakegearin/hex-to-css-filter-library/issues"
},
"keywords": [
"hex-to-css-filter-library",
"hex",
"css",
"filter",
"library",
"color",
"database",
"convert"
],
"type": "module",
"main": "index.js",
"scripts": {
"readme": "node docs/generate_readme.js && npm run --silent make-badges",
"test": "c8 mocha --recursive './test/*.spec.js' --require esm && npm run --silent make-badges",
"make-badges": "c8 report --reporter=json-summary && istanbul-badges-readme --silent",
"lint": "standard",
"lint-fix": "standard --fix"
},
"engines": {
"node": ">=18.0.0"
},
"dependencies": {
"base-64": "^1.0.0",
"utf8": "^3.0.0"
},
"devDependencies": {
"c8": "^7.12.0",
"chai": "^4.3.7",
"dotenv": "^16.0.3",
"esm": "^3.2.25",
"istanbul-badges-readme": "^1.8.4",
"mocha": "^10.2.0",
"sinon": "^15.0.1",
"standard": "^17.0.0",
"undici": "^5.14.0"
},
"standard": {
"env": [
"browser",
"mocha",
"node"
]
}
}