-
Notifications
You must be signed in to change notification settings - Fork 70
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 961 Bytes
/
package.json
File metadata and controls
39 lines (39 loc) · 961 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
{
"publishConfig": {
"access": "public"
},
"engines": {
"node": ">=18"
},
"name": "@commercetools/get-credentials",
"version": "5.0.0",
"description": "Get CT credentials from the system environment.",
"keywords": [
"commercetools",
"credentials"
],
"repository": {
"type": "git",
"url": "https://github.com/commercetools/nodejs/tree/master/packages/get-credentials"
},
"homepage": "https://commercetools.github.io/nodejs/sdk/api/getCredentials",
"bugs": "https://github.com/commercetools/nodejs/issues",
"license": "MIT",
"contributors": [
"Selwyn Versteeg <selwyn.versteeg@commercetools.com> (https://selwyn.cc/)"
],
"main": "lib/index.js",
"files": [
"lib"
],
"scripts": {
"prebuild": "rimraf lib/**",
"build": "babel src --out-dir lib --config-file '../../babel.config.js'"
},
"devDependencies": {
"sinon": "9.2.4"
},
"dependencies": {
"dotenv": "^8.0.0"
}
}