generated from Green-Software-Foundation/if-plugin-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
58 lines (58 loc) · 1.41 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
{
"name": "grasp",
"description": "Grasp plugin for Impact Framework to convert a software's carbon emission into easier to 'grasp' values.",
"version": "0.1.1",
"author": {
"name": "hoernschen",
"email": "hi@hoernschen.de"
},
"bugs": {
"url": "https://github.com/hoernschen/grasp/issues/new"
},
"dependencies": {
"@grnsft/if-core": "^0.0.25",
"typescript": "^5.4.3",
"zod": "^3.22.4"
},
"devDependencies": {
"@babel/core": "7.22.10",
"@babel/preset-typescript": "^7.22.5",
"@jest/globals": "^29.6.1",
"@types/jest": "^29.5.7",
"@types/node": "^20.4.5",
"fixpack": "^4.0.0",
"gts": "^5.0.0",
"husky": "^8.0.0",
"jest": "^29.7.0",
"rimraf": "^5.0.5",
"ts-jest": "^29.1.2"
},
"engines": {
"node": ">=18",
"npm": ">=8"
},
"homepage": "https://greensoftware.foundation",
"keywords": [
"green software foundation",
"greensoftware",
"if",
"if-framework",
"impact"
],
"license": "MIT",
"main": "build/index.js",
"repository": {
"url": "https://github.com/hoernschen/grasp"
},
"scripts": {
"build": "npm run clean && tsc --project tsconfig.build.json",
"clean": "rimraf build/",
"coverage": "jest --verbose --coverage",
"fix": "gts fix",
"fix:package": "fixpack",
"lint": "gts lint",
"prepare": "husky install",
"prepublish": "npm run build",
"test": "jest --verbose"
}
}