This repository has been archived by the owner on Jun 21, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
68 lines (68 loc) · 1.71 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
{
"name": "@ecomplus/admin-helpers",
"version": "1.2.4",
"description": "DOM utils for E-Com Plus admin and related frontend apps",
"module": "src/index.js",
"browser": "dist/admin-helpers.min.js",
"main": "dist/admin-helpers.min.js",
"jsdelivr": "dist/admin-helpers.var.min.js",
"unpkg": "dist/admin-helpers.var.min.js",
"scripts": {
"build": "NODE_ENV=production webpack",
"release": "rm -rf ./dist; npm run build && standard-version"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ecomplus/admin-helpers.git"
},
"keywords": [
"ecomplus",
"dashboard",
"toast"
],
"author": "E-Com Club <ti@e-com.club>",
"license": "AGPL-3.0",
"bugs": {
"url": "https://github.com/ecomplus/admin-helpers/issues"
},
"homepage": "https://github.com/ecomplus/admin-helpers#readme",
"peerDependencies": {
"@ecomplus/utils": "^1.4.1"
},
"optionalDependencies": {
"core-js": "^3.9.0",
"jquery": "^3.5.1"
},
"dependencies": {
"@ecomplus/i18n": "^1.20.0"
},
"devDependencies": {
"@babel/core": "^7.12.17",
"@babel/preset-env": "^7.12.17",
"@commitlint/cli": "^11.0.0",
"@commitlint/config-conventional": "^11.0.0",
"@ecomplus/utils": "^1.4.1",
"babel-loader": "^8.2.2",
"core-js": "^3.9.0",
"husky": "^3.1.0",
"jquery": "^3.5.1",
"standard": "^16.0.3",
"standard-version": "^8.0.2",
"webpack": "^4.46.0",
"webpack-cli": "^3.3.12"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"browserslist": [
"last 1 version",
"not dead",
"> 0.2%"
],
"publishConfig": {
"registry": "https://npm.pkg.github.com/",
"access": "public"
}
}