-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 1.81 KB
/
Copy pathpackage.json
File metadata and controls
68 lines (68 loc) · 1.81 KB
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": "@cnaught/cnaught-node-sdk",
"version": "3.1.0",
"description": "CNaught Carbon Offsets API - Node SDK",
"main": "dist/index.js",
"files": [
"dist/**"
],
"type": "module",
"scripts": {
"build": "genversion --es6 src/version.ts && tsc",
"unit-test": "jest -c jest.config.unit.js",
"integration-test": "jest -c ./jest.config.integration.js",
"lint": "eslint -c .eslintrc.yaml --ext .ts \".\"",
"lint-fix": "eslint --fix -c .eslintrc.yaml --ext .ts \".\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/cnaught-inc/cnaught-node-sdk.git"
},
"keywords": [
"CNaught",
"carbon offset",
"carbon neutral",
"carbon removal",
"sustainability"
],
"author": "CNaught, Inc (https://www.cnaught.com)",
"contributors": [
"Dan Kokotov <dkokotov@gmail.com>",
"Jason Chen <jasonschen5@gmail.com>"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/cnaught-inc/cnaught-node-sdk/issues"
},
"homepage": "https://github.com/cnaught-inc/cnaught-node-sdk#readme",
"engines": {
"node": ">=18"
},
"dependencies": {
"http-problem-details-parser": "^0.0.2",
"wretch": "^2.7.0"
},
"devDependencies": {
"@types/jest": "^23.3.13",
"@types/node": "^18.18.9",
"@typescript-eslint/eslint-plugin": "^6.10.0",
"@typescript-eslint/eslint-plugin-tslint": "^6.10.0",
"@typescript-eslint/parser": "^6.10.0",
"dotenv": "^16.0.1",
"eslint": "^8.18.0",
"eslint-config-prettier": "8.1.0",
"eslint-plugin-import": "^2.26.0",
"genversion": "^3.1.1",
"jest": "^29.7.0",
"jest-fetch-mock": "^4.2.0",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.1",
"typescript": "^5.2.2"
},
"jest": {
"projects": [
"./jest.config.unit.js",
"./jest.config.integration.js"
]
}
}