-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
62 lines (62 loc) · 1.82 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
{
"name": "monobank-api-client",
"version": "1.0.2",
"description": "Monobank API client wrapper build on promises",
"main": "index.js",
"repository": "https://github.com/jangolle/monobank-api-client",
"author": "jangolle <[email protected]>",
"license": "MIT",
"private": false,
"keywords": [
"monobank",
"api",
"client",
"monobank-api",
"monobank-nodejs"
],
"scripts": {
"lint": "yarn prettier:cmd --check \"README.md\" \"src/**/*.{json,js}\" \"config/*.{json,js}\" \"tests/**/*.{json,js}\"",
"lint:fix": "yarn prettier",
"prettier": "yarn prettier:cmd --write \"README.md\" \"src/**/*.{json,js}\" \"config/*.{json,js}\" \"tests/**/*.{json,js}\"",
"prettier:cmd": "prettier --config .prettierrc",
"test": "yarn run unit-test",
"unit-test": "NODE_ENV=test ./node_modules/.bin/mocha --opts tests/mocha.opts -R spec ./tests/Unit/**",
"test:coverage": "NODE_ENV=test ./node_modules/.bin/istanbul cover ./node_modules/.bin/_mocha --report lcovonly --print both -- --opts tests/mocha.opts -R spec ./tests"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"pre-push": "yarn lint"
}
},
"lint-staged": {
"*.{md,json,js}": [
"yarn prettier:cmd --write",
"git add"
]
},
"engines": {
"node": ">=8.1"
},
"dependencies": {
"app-module-path": "^2.2.0",
"asn1.js": "^5.2.0",
"axios": "^0.19.0",
"currency-codes": "^1.5.0"
},
"devDependencies": {
"babel-eslint": "^10.0.1",
"chai": "4.0.2",
"eslint": "^5.0",
"eslint-config-prettier": "^4.1.0",
"eslint-plugin-prettier": "^3.0.1",
"husky": "^1.3.1",
"istanbul": "1.1.0-alpha.1",
"lint-staged": "^8.1.5",
"mocha": "3.4.2",
"prettier": "^1.16.4",
"pretty-quick": "^1.10.0",
"sinon": "2.3.4",
"supertest": "3.0.0"
}
}