-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
45 lines (45 loc) · 1.15 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
{
"name": "mbank-api",
"version": "1.2.1",
"description": "library for connecting to mbank through your internetbanking credentials",
"main": "src/index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"eslint": "eslint src --max-warnings=0",
"prettier": "prettier-eslint --write \"{src}/**/*.{js,jsx,json,css}\"",
"precommit": "lint-staged"
},
"lint-staged": {
"{src}/**/*.{js,jsx,json,css}": [
"prettier-eslint --write",
"git add"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/refi93/mbank-api.git"
},
"keywords": [
"mbank"
],
"author": "refi93",
"license": "ISC",
"bugs": {
"url": "https://github.com/refi93/mbank-api/issues"
},
"homepage": "https://github.com/refi93/mbank-api#readme",
"dependencies": {
"axios": "^0.18.0",
"lodash": "^4.17.11"
},
"devDependencies": {
"eslint": "^5.9.0",
"eslint-config-vacuumlabs": "^1.7.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-react": "^7.11.1",
"husky": "^1.1.4",
"lint-staged": "^8.0.5",
"prettier": "^1.15.2",
"prettier-eslint-cli": "^4.7.1"
}
}