-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
46 lines (46 loc) · 1.24 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
{
"name": "@ecomplus/i18n",
"version": "1.32.2",
"description": "Tree shakable dictionary for e-commerce JS apps",
"main": "dist/i18n.min.js",
"module": "src/index.js",
"sideEffects": false,
"scripts": {
"generate": "node ./scripts/generate-named-exports",
"build": "npm run generate && cross-env NODE_ENV=production webpack",
"release": "rm -rf ./dist; npm run build && commit-and-tag-version"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ecomplus/i18n.git"
},
"keywords": [
"ecommerce",
"dictionary",
"translations",
"ecomplus",
"storefront"
],
"author": "E-Com Club <ti@e-com.club>",
"license": "MIT",
"bugs": {
"url": "https://github.com/ecomplus/i18n/issues"
},
"homepage": "https://github.com/ecomplus/i18n#readme",
"devDependencies": {
"@babel/core": "^7.26.0",
"@babel/preset-env": "^7.26.0",
"@commitlint/cli": "^17.8.1",
"@commitlint/config-conventional": "^17.8.1",
"babel-loader": "^8.4.1",
"cross-env": "^7.0.3",
"husky": "^8.0.3",
"standard": "^17.1.2",
"commit-and-tag-version": "^9.6.0",
"webpack": "^4.47.0",
"webpack-cli": "^3.3.12"
},
"publishConfig": {
"registry": "https://npm.pkg.github.com/"
}
}