-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.03 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.03 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
{
"name": "makeimpact",
"version": "1.3.0",
"description": "Official JavaScript SDK for 1ClickImpact",
"main": "dist/index.js",
"module": "dist/index.mjs",
"browser": "dist/index.umd.js",
"unpkg": "dist/index.umd.js",
"types": "dist/index.d.ts",
"files": [
"dist",
"README.md",
"LICENSE"
],
"scripts": {
"build": "tsc",
"prepublishOnly": "npm run build",
"test": "jest"
},
"keywords": [
"1clickimpact",
"sustainability",
"climate",
"sdk",
"impact",
"trees",
"carbon",
"ocean",
"environment",
"esg"
],
"repository": {
"type": "git",
"url": "git+https://github.com/1ClickImpact/makeimpact-js.git"
},
"author": "1ClickImpact",
"license": "MIT",
"devDependencies": {
"@types/jest": "^29.5.0",
"@types/node": "^18.11.18",
"@types/node-fetch": "^2.6.4",
"dotenv": "^16.5.0",
"jest": "^29.5.0",
"node-fetch": "^2.6.7",
"ts-jest": "^29.1.0",
"typescript": "^4.9.4"
},
"publishConfig": {
"access": "public"
}
}