-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
68 lines (68 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
64
65
66
67
68
{
"name": "@tgwf/url2green",
"version": "0.4.1",
"description": "An npm module for quickly checking a domain against the The Green Web Foundation url2green dataset",
"main": "src/index.js",
"type": "module",
"np": {
"yarn": false
},
"publishConfig": {
"access": "public"
},
"engines": {
"node": ">=16.0.0"
},
"dependencies": {
"better-sqlite3": "^11.0.0",
"debug": "^4.1.1"
},
"devDependencies": {
"@eslint/eslintrc": "^3.1.0",
"@eslint/js": "^9.13.0",
"esbuild-jest": "^0.5.0",
"eslint": "^8.57.1",
"eslint-config-prettier": "*",
"eslint-plugin-jest": "*",
"eslint-plugin-prettier": "*",
"globals": "^15.11.0",
"jest": "*",
"np": "*",
"prettier": "*"
},
"scripts": {
"test": "jest",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"ci": "npm run lint && jest",
"release": "npm run lint:fix && np minor",
"release:patch": "npm run lint:fix && np patch",
"db:dump-domains": "./scripts/generate-json-from-db.js"
},
"jest": {
"transform": {
"^.+\\.(t|j)sx?$": [
"esbuild-jest"
]
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/thegreenwebfoundation/url2green-js.git"
},
"keywords": [
"sustainability",
"carbon",
"the",
"green",
"web",
"foundation",
"co2"
],
"author": "Chris Adams",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/thegreenwebfoundation/url2green-js/issues"
},
"homepage": "https://github.com/thegreenwebfoundation/url2green-js#readme"
}