-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
121 lines (121 loc) · 3.48 KB
/
package.json
File metadata and controls
121 lines (121 loc) · 3.48 KB
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
{
"name": "@codetanzania/majifix-analytics",
"version": "0.11.1",
"description": "Majifix module for analytics and reports",
"main": "lib/index.js",
"module": "es/index.js",
"scripts": {
"clean": "rimraf lib dist es umd logs",
"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 --require @babel/register test/unit/**/*.spec.js",
"test:integration": "npm run pretest && NODE_ENV=test mocha --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 && npm install --save",
"lint:config": "eslint --print-config rollup.config.js"
},
"keywords": [
"anzalab",
"majifix",
"analytics",
"isomophic"
],
"repository": {
"type": "git",
"url": "git+https://github.com/anzalab/majifix-analytics.git"
},
"contributors": [
{
"name": "lykmapipo",
"email": "lallyelias87@gmail.com",
"url": "https://github.com/lykmapipo"
},
{
"name": "Benson Maruchu",
"email": "benmaruchu@gmail.com",
"url": "https://github.com/BenMaruchu"
}
],
"license": "MIT",
"bugs": {
"url": "https://github.com/anzalab/majifix-analytics/issues"
},
"homepage": "https://github.com/anzalab/majifix-analytics#readme",
"devDependencies": {
"@babel/cli": "^7.6.4",
"@babel/core": "^7.6.4",
"@babel/node": "^7.6.3",
"@babel/preset-env": "^7.6.3",
"@babel/register": "^7.6.2",
"@commitlint/cli": "^8.2.0",
"@commitlint/config-conventional": "^8.2.0",
"@commitlint/travis-cli": "^8.2.0",
"chai": "^4.2.0",
"commitizen": "^4.0.3",
"coveralls": "^3.0.7",
"cz-conventional-changelog": "^3.0.2",
"doxdox": "^3.0.0",
"eslint": "^6.5.1",
"eslint-config-airbnb-base": "^14.0.0",
"eslint-config-prettier": "^6.4.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-jsdoc": "^15.12.0",
"eslint-plugin-mocha": "^6.2.0",
"eslint-plugin-prettier": "^3.1.1",
"generate-changelog": "^1.8.0",
"handlebars": "^4.4.5",
"husky": "^3.0.9",
"lint-staged": "^9.4.2",
"lodash.template": "^4.5.0",
"mocha": "^6.2.2",
"mongoose": "^5.7.5",
"npm-check-updates": "^3.1.25",
"nyc": "^14.1.1",
"prettier": "^1.18.2",
"rimraf": "^3.0.0",
"rollup": "^1.25.1",
"shelljs": "^0.8.3"
},
"peerDependencies": {},
"dependencies": {
"@lykmapipo/common": ">=0.28.5",
"@lykmapipo/env": ">=0.14.7",
"@lykmapipo/express-common": ">=0.17.13",
"@lykmapipo/mongoose-common": ">=0.26.3",
"async": ">=3.1.0",
"lodash": ">=4.17.15",
"parse-ms": ">=2.1.0"
},
"engines": {
"node": ">=12.4.0",
"npm": ">=6.9.0"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"lint-staged": {
"src/**/*.js": [
"npm run lint",
"git add -A"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
}
}