-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
78 lines (78 loc) · 1.92 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
69
70
71
72
73
74
75
76
77
78
{
"name": "@tngtech/if-webpage-plugins",
"description": "Impact Framework - Plugins for estimating CO2e Impact of Webpages (CommonJS)",
"version": "v0.0.1",
"author": {
"name": "A. zur Bonsen, TNG Technology Consulting GmbH",
"email": "[email protected]"
},
"bugs": {
"url": "https://github.com/TNG/if-webpage-plugins/issues"
},
"dependencies": {
"@grnsft/if-core": "^0.0.28",
"@tgwf/co2": "^0.16.1",
"puppeteer": "^22.2.0",
"tldjs": "^2.3.1",
"typescript": "^5.1.6",
"zod": "^3.22.4"
},
"devDependencies": {
"@babel/core": "7.26.0",
"@babel/preset-typescript": "^7.22.5",
"@jest/globals": "^29.6.1",
"@types/express": "^4.17.21",
"@types/jest": "^29.5.7",
"@types/js-yaml": "^4.0.8",
"@types/node": "^20.4.5",
"@types/tgwf__co2": "^0.14.2",
"@types/tldjs": "^2.3.4",
"express": "^4.19.2",
"fixpack": "4.0.0",
"gts": "^5.0.0",
"husky": "^8.0.3",
"jest": "^29.6.1",
"jest-mock-axios": "^4.7.2",
"lint-staged": "^15.2.2",
"ts-jest": "^29.1.1",
"zod": "^3.22.4"
},
"engines": {
"node": ">=18",
"npm": ">=8"
},
"exports": {
"require": "./build/index.js"
},
"files": [
"build"
],
"homepage": "https://github.com/TNG/if-webpage-plugins",
"keywords": [
"green software",
"green software foundation",
"if",
"if-plugins",
"plugins",
"unofficial"
],
"license": "Apache-2.0",
"main": "./build/index.js",
"publishConfig": {
"access": "public"
},
"repository": {
"url": "https://github.com/TNG/if-webpage-plugins.git"
},
"scripts": {
"build": "rm -rf build && tsc --project tsconfig.json",
"coverage": "jest --verbose --coverage",
"fix": "gts fix",
"fix:package": "fixpack",
"lint": "gts lint",
"pre-commit": "lint-staged",
"prepare": "husky install",
"prepublish": "npm run build",
"test": "jest --verbose"
}
}