-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
103 lines (103 loc) · 2.61 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
{
"name": "@codetanzania/ewea-api-client",
"version": "0.24.1",
"description": "http client for EWEA API.",
"main": "lib/index.js",
"module": "es/index.js",
"scripts": {
"clean": "rimraf lib dist es umd",
"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 mocha --require @babel/register test/**/*.spec.js",
"cmt": "git add -A && git-cz",
"changelog": "changelog -x chore"
},
"repository": {
"type": "git",
"url": "git+https://github.com/CodeTanzania/ewea-api-client.git"
},
"keywords": [
"codetanzania",
"ewea",
"ewea-api",
"ewea-api-client",
"http",
"axios"
],
"contributors": [
{
"name": "Benson Maruchu",
"email": "benmaruchu@gmail.com",
"url": "https://github.com/BenMaruchu"
}
],
"license": "MIT",
"bugs": {
"url": "https://github.com/CodeTanzania/ewea-api-client/issues"
},
"homepage": "https://github.com/CodeTanzania/ewea-api-client#readme",
"devDependencies": {
"@babel/cli": "^7.13.0",
"@babel/core": "^7.13.1",
"@babel/node": "^7.13.0",
"@babel/preset-env": "^7.13.5",
"@babel/register": "^7.13.0",
"@commitlint/cli": "^12.1.4",
"@commitlint/config-conventional": "^12.1.4",
"@commitlint/travis-cli": "^12.1.4",
"chai": "^4.3.0",
"commitizen": "^4.2.4",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^7.20.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-mocha": "^9.0.0",
"eslint-plugin-prettier": "^3.3.1",
"generate-changelog": "^1.8.0",
"husky": "^6.0.0",
"lint-staged": "^10.5.4",
"mocha": "^8.3.0",
"nock": "^13.0.11",
"prettier": "^2.2.1",
"rimraf": "^3.0.2",
"rollup": "^2.48.0"
},
"dependencies": {
"@lykmapipo/common": ">=0.43.1",
"@lykmapipo/env": ">=0.17.30",
"axios": ">=0.21.0",
"form-data": ">=4.0.0",
"inflection": ">=1.12.0",
"jwt-decode": ">=3.1.2",
"lodash": ">=4.17.21",
"moment": ">=2.29.1"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"lint-staged": {
"*.js": [
"eslint --fix"
],
"*.{md,json}": [
"prettier --write"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
}
}