-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.19 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.19 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
{
"name": "@cloudblueconnect/connect-javascript-sdk",
"version": "25.0.0",
"description": "Cloud Blue Connect Javascript SDK",
"main": "index.js",
"scripts": {
"test": "jest --no-cache",
"test:dev": "jest --no-cache --watch",
"lint": "eslint lib/**",
"docs": "jsdoc -c jsdoc.config.js",
"mddocs": "node mddocs.js"
},
"repository": {
"type": "git",
"url": "https://github.com/cloudblue/connect-javascript-sdk.git"
},
"keywords": [
"sdk",
"cloudblue",
"connect"
],
"author": "Ingram Micro Inc",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/cloudblue/connect-javascript-sdk/issues"
},
"homepage": "https://github.com/cloudblue/connect-javascript-sdk#readme",
"dependencies": {
"node-fetch": "^3.1.1",
"ramda": "^0.26.1"
},
"devDependencies": {
"@cloudblueconnect/connect-jsdoc-theme": "^19.2.1",
"eslint": "^6.7.1",
"eslint-config-airbnb-base": "^14.0.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-jsdoc": "^21.0.0",
"jest": "^25.1.0",
"jest-fetch-mock": "^3.0.1",
"jsdoc": "^3.6.3",
"jsdoc-to-markdown": "^5.0.3"
},
"publishConfig": {
"access": "public"
}
}