-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
75 lines (75 loc) · 1.95 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
{
"name": "@lytrax/everypay",
"version": "1.0.9",
"description": "EveryPay payment gateway REST API adapter for JavaScript/NodeJS",
"main": "src/index.js",
"scripts": {
"test": "mocha || true",
"test-result": "mocha",
"build": "node ./scripts/build.js",
"deploy": "yarpm run build && cd ./dist && npm publish --access-public && cd ..",
"deploy-dry": "yarpm run build && cd ./dist && npm publish --access-public --dry-run && cd ..",
"prettier": "prettier \"**/*.{json,md,scss,yaml,yml,js}\" --write",
"lint": "eslint ./ --ignore-path .gitignore --ignore-pattern internals/scripts --fix",
"lint:fix": "npm run lint --fix"
},
"repository": {
"type": "git",
"url": "git+https://github.com/clytras/everypay.git"
},
"keywords": [
"everypay",
"payments",
"api"
],
"author": {
"name": "Christos Lytras",
"email": "[email protected]",
"url": "https://lytras.io"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/clytras/everypay/issues"
},
"homepage": "https://github.com/clytras/everypay#readme",
"dependencies": {
"base-64": "^0.1.0",
"form-urlencoded": "^3.0.1",
"node-fetch": "^2.6.0",
"qs": "^6.7.0"
},
"devDependencies": {
"chai": "^4.2.0",
"colors": "^1.3.3",
"copy-dir": "^1.1.0",
"dotenv": "^8.0.0",
"faker": "^4.1.0",
"fs-extra": "^8.1.0",
"mocha": "^6.1.4",
"yarpm": "^0.2.1",
"eslint": "^6.0.1",
"eslint-config-airbnb-base": "^13.2.0",
"eslint-config-prettier": "^6.0.0",
"eslint-plugin-import": "^2.18.0",
"eslint-plugin-prettier": "3.1.0",
"husky": "^3.0.0",
"lint-staged": "^9.2.0",
"prettier": "^1.18.2",
"supports-color": "^7.0.0"
},
"lint-staged": {
"*.{js,jsx}": [
"eslint --fix",
"git add"
],
"*.{json,md,scss,yaml,yml,js}": [
"prettier --write",
"git add"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
}
}