-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1007 Bytes
/
package.json
File metadata and controls
46 lines (46 loc) · 1007 Bytes
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
{
"name": "@globalmoo/globalmoo-sdk",
"version": "1.0.1",
"description": "JavaScript SDK for the globalMOO API",
"main": "src/index.js",
"type": "module",
"scripts": {
"test": "node --experimental-vm-modules node_modules/jest/bin/jest.js",
"prepare": "npm test"
},
"dependencies": {
"axios": "^1.8.2",
"dotenv": "^16.4.1"
},
"devDependencies": {
"jest": "^29.7.0"
},
"jest": {
"transform": {},
"testEnvironment": "node",
"moduleNameMapper": {
"^(\\.{1,2}/.*)\\.js$": "$1"
}
},
"keywords": [
"globalmoo",
"optimization",
"sdk",
"api"
],
"repository": {
"type": "git",
"url": "git+https://github.com/globalmoo/gmoo-sdk-javascript.git"
},
"bugs": {
"url": "https://github.com/globalmoo/gmoo-sdk-javascript/issues"
},
"homepage": "https://github.com/globalmoo/gmoo-sdk-javascript#readme",
"engines": {
"node": ">=14.0.0"
},
"license": "MIT",
"publishConfig": {
"access": "public"
}
}