-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
66 lines (66 loc) · 1.77 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
{
"name": "@ecomplus/apps-manager",
"version": "1.0.1",
"description": "JS lib to manage E-Com Plus store applications",
"main": "dist/ecom-apps.min.js",
"module": "src/index.js",
"browser": "dist/ecom-apps.min.js",
"jsdelivr": "dist/ecom-apps.root.min.js",
"unpkg": "dist/ecom-apps.root.min.js",
"scripts": {
"build": "NODE_ENV=production webpack",
"serve": "webpack-dev-server",
"doc": "rm -rf ./docs/*; jsdoc ./src -r ./README.md -d ./docs -t ./node_modules/docdash",
"release": "rm -rf ./dist; npm run build && commit-and-tag-version"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ecomplus/apps-manager.git"
},
"keywords": [
"ecomplus",
"marketplace",
"apps",
"applications"
],
"author": "E-Com Club <[email protected]>",
"license": "AGPL-3.0",
"bugs": {
"url": "https://github.com/ecomplus/apps-manager/issues"
},
"homepage": "https://github.com/ecomplus/apps-manager#readme",
"dependencies": {
"@ecomplus/auth": "^1.0.1",
"axios": "^1.7.7",
"core-js": "^3.39.0"
},
"devDependencies": {
"@babel/core": "^7.26.0",
"@babel/plugin-transform-runtime": "^7.25.9",
"@babel/preset-env": "^7.26.0",
"@commitlint/cli": "^18.6.1",
"@commitlint/config-conventional": "^18.6.3",
"babel-loader": "^8.4.1",
"docdash": "^2.0.2",
"husky": "^4.3.8",
"jsdoc": "^4.0.4",
"standard": "^17.1.2",
"commit-and-tag-version": "^9.6.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/"
}
}