-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
73 lines (73 loc) · 1.87 KB
/
package.json
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
69
70
71
72
73
{
"name": "@ecomplus/client",
"version": "2.4.0",
"description": "JS client for E-Com Plus REST APIs",
"main": "dist/ecom-client.node.js",
"module": "src/index.js",
"browser": "dist/ecom-client.min.js",
"jsdelivr": "dist/ecom-client.polyfill.min.js",
"unpkg": "dist/ecom-client.polyfill.min.js",
"scripts": {
"serve": "webpack-dev-server",
"build": "node ./build/bin.js",
"doc": "rm -rf ./docs/*; jsdoc ./src -r ./README.md -d ./docs -t ./node_modules/docdash",
"release": "rm -rf ./dist; npm ddp && commit-and-tag-version && node ./build/bin.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ecomplus/client.git"
},
"keywords": [
"ecomplus",
"ecommerce-apis",
"js-client",
"rest-apis",
"jamstack",
"headless-ecommerce"
],
"author": "E-Com Club <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/ecomplus/client/issues"
},
"homepage": "https://github.com/ecomplus/client#readme",
"peerDependencies": {
"@ecomplus/utils": "1.x"
},
"optionalDependencies": {
"core-js": "3.x"
},
"dependencies": {
"axios": "^0.27.2 || ^1.1.2"
},
"devDependencies": {
"@babel/core": "^7.24.4",
"@babel/preset-env": "^7.24.4",
"@commitlint/cli": "^17.8.1",
"@commitlint/config-conventional": "^17.8.1",
"@ecomplus/utils": "^1.4.1",
"babel-loader": "^8.3.0",
"core-js": "^3.36.1",
"docdash": "^2.0.2",
"husky": "^8.0.3",
"jsdoc": "^4.0.2",
"standard": "^17.1.0",
"commit-and-tag-version": "^9.5.0",
"webpack": "^4.47.0",
"webpack-cli": "^3.3.12",
"webpack-dev-server": "^3.11.3"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"browserslist": [
"last 1 version",
"not dead",
"> 0.2%"
],
"publishConfig": {
"registry": "https://npm.pkg.github.com/"
}
}