-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
132 lines (132 loc) · 3.8 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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
{
"name": "@lykmapipo/i18n",
"version": "0.2.24",
"description": "Re-usable helpers for mongoose connection",
"main": "lib/index.js",
"module": "es/index.js",
"scripts": {
"clean": "rimraf lib dist es umd logs",
"prepare": "husky install",
"prebuild": "npm test && npm run clean",
"build": "rollup -c",
"lint": "eslint --fix --ext .js src/ test/ rollup.config.js",
"pretest": "npm run lint",
"test": "NODE_ENV=test nyc --reporter=html --reporter=text mocha --exit --require @babel/register test/**/*.spec.js",
"test:unit": "npm run pretest && NODE_ENV=test mocha --exit --require @babel/register test/unit/**/*.spec.js",
"test:integration": "npm run pretest && NODE_ENV=test mocha --exit --require @babel/register test/integration/**/*.spec.js",
"coverage": "nyc report --reporter=text-lcov | coveralls",
"docs": "doxdox 'lib/**/*.js' -p package.json -l markdown -o DOCUMENTATION.md",
"cmt": "git add -A && git-cz",
"changelog": "changelog",
"chore:deps": "ncu -u --timeout=60000 && npm install --save --timeout=60000",
"chore:deps:minor": "ncu -u --target=minor --timeout=60000 && npm install --save --timeout=60000",
"chore:deps:patch": "ncu -u --target=patch --timeout=60000 && npm install --save --timeout=60000"
},
"repository": {
"type": "git",
"url": "https://github.com/lykmapipo/i18n.git"
},
"keywords": [
"lykmapipo",
"common",
"utils",
"helpers",
"locale",
"language",
"template",
"i18n"
],
"author": {
"name": "lykmapipo",
"email": "lallyelias87@gmail.com",
"url": "https://github.com/lykmapipo"
},
"contributors": [
{
"name": "lykmapipo",
"email": "lallyelias87@gmail.com",
"url": "https://github.com/lykmapipo"
}
],
"license": "MIT",
"bugs": {
"url": "https://github.com/lykmapipo/i18n/issues",
"email": "lallyelias87@gmail.com"
},
"homepage": "https://github.com/lykmapipo/i18n",
"devDependencies": {
"@babel/cli": "^7.18.9",
"@babel/core": "^7.18.9",
"@babel/node": "^7.18.9",
"@babel/preset-env": "^7.18.9",
"@babel/register": "^7.18.9",
"@commitlint/cli": "^13.2.1",
"@commitlint/config-conventional": "^13.2.0",
"@commitlint/travis-cli": "^13.2.1",
"@lykmapipo/test-helpers": "^0.6.23",
"acorn": "^8.8.0",
"chai": "^4.3.6",
"commitizen": "^4.2.5",
"coveralls": "^3.1.1",
"cz-conventional-changelog": "^3.3.0",
"dot-prop": "^6.0.1",
"doxdox": "^3.0.0",
"eslint": "7.32.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jsdoc": "^36.1.1",
"eslint-plugin-mocha": "^9.0.0",
"eslint-plugin-prettier": "^4.2.1",
"generate-changelog": "^1.8.0",
"handlebars": "^4.7.7",
"husky": "^7.0.4",
"kind-of": "^6.0.3",
"lint-staged": "^11.2.6",
"lodash.template": "^4.5.0",
"minimist": "^1.2.6",
"mocha": "^9.2.2",
"npm-check-updates": "^11.8.5",
"nyc": "^15.1.0",
"prettier": "^2.7.1",
"rimraf": "^3.0.2",
"rollup": "^2.77.1",
"shelljs": "^0.8.5",
"websocket-extensions": "^0.1.4"
},
"dependencies": {
"@lykmapipo/common": ">=0.44.5",
"@lykmapipo/env": ">=0.17.39",
"async": ">=3.2.4",
"i18n": ">=0.15.0",
"lodash": ">=4.17.21"
},
"engines": {
"node": ">=14.5.0",
"npm": ">=6.14.5"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"lint-staged": {
"*.js": [
"eslint --fix"
],
"*.{md,json,yml,html}": [
"prettier --write"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
}
}