This repository has been archived by the owner on May 1, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
72 lines (72 loc) · 1.89 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
{
"name": "@ecomplus/storefront-router",
"version": "2.2.1",
"description": "Universal JS router for E-Com Plus storefront",
"main": "dist/ecom-router.node.js",
"module": "src/index.js",
"browser": "dist/ecom-router.min.js",
"jsdelivr": "dist/ecom-router.root.min.js",
"unpkg": "dist/ecom-router.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 ddp && npm run build && standard-version"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ecomplus/storefront-router.git"
},
"keywords": [
"ecomplus",
"storefront",
"router",
"ecommerce",
"universal-app"
],
"author": "E-Com Club <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/ecomplus/storefront-router/issues"
},
"homepage": "https://github.com/ecomplus/storefront-router#readme",
"peerDependencies": {
"@ecomplus/utils": "^1.4.1"
},
"optionalDependencies": {
"core-js": "^3.36.1"
},
"dependencies": {
"@ecomplus/client": "^2.3.1"
},
"devDependencies": {
"@babel/core": "^7.24.3",
"@babel/preset-env": "^7.24.3",
"@commitlint/cli": "^18.6.1",
"@commitlint/config-conventional": "^18.6.3",
"@ecomplus/utils": "^1.4.1",
"babel-loader": "^8.3.0",
"core-js": "^3.36.1",
"docdash": "^2.0.2",
"husky": "^3.1.0",
"jsdoc": "^4.0.2",
"standard": "^17.1.0",
"standard-version": "^9.3.2",
"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/"
}
}