-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 3.67 KB
/
package.json
File metadata and controls
74 lines (74 loc) · 3.67 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
{
"name": "settle-sdk-node",
"version": "1.4.5",
"description": "An easy to use SDK for Node.js with all the best practices to kickstart your integration with the Settle Payment Platform.",
"main": "./src/index.js",
"scripts": {
"clean": "rimraf lib",
"test": "npm run lint && npm run cover",
"test:prod": "cross-env BABEL_ENV=production npm run test",
"test:only": "mocha --require babel-core/register --require babel-polyfill --recursive",
"test:watch": "npm test -- --watch",
"test:examples": "node examples/",
"cover": "nyc --check-coverage npm run test:only",
"lint": "eslint src test",
"build": "cross-env BABEL_ENV=production babel src --out-dir lib",
"publish:prerelease": "npm run clean && npm run test && git commit -am 'prerelease' && npm version prerelease -m 'Upgrade to %s' && git push && npm publish && echo 'https://www.npmjs.com/package/settle-sdk-node'",
"publish:prepatch": "npm run clean && npm run test && git commit -am 'prepatch' && npm version prepatch -m 'Upgrade to %s' && git push && npm publish && echo 'https://www.npmjs.com/package/settle-sdk-node'",
"publish:preminor": "npm run clean && npm run test && git commit -am 'preminor' && npm version preminor -m 'Upgrade to %s' && git push && npm publish && echo 'https://www.npmjs.com/package/settle-sdk-node'",
"publish:premajor": "npm run clean && npm run test && git commit -am 'premajor' && npm version premajor -m 'Upgrade to %s' && git push && npm publish && echo 'https://www.npmjs.com/package/settle-sdk-node'",
"publish:patch": "npm run clean && npm run test && git commit -am 'patch' && npm version patch -m 'Upgrade to %s' && git push && npm publish && echo 'https://www.npmjs.com/package/settle-sdk-node'",
"publish:minor": "npm run clean && npm run test && git commit -am 'minor changes' && npm version minor -m 'Upgrade to %s' && git push && npm publish && echo 'https://www.npmjs.com/package/settle-sdk-node'",
"publish:major": "npm run clean && npm run test && git commit -am 'major changes' && npm version major -m 'Upgrade to %s' && git push && npm publish && echo 'https://www.npmjs.com/package/settle-sdk-node'"
},
"files": [
"lib",
"src"
],
"repository": {
"type": "git",
"url": "git+https://github.com/SettleAPI/settle-sdk-node.git"
},
"keywords": [
"Settle",
"Settle Group",
"Settle.eu",
"Payment Platform",
"SDK",
"Merchant API",
"OAuth 2.0 Authorization Framework",
"Permissions API",
"Express.js Middleare"
],
"author": "Christian Wick <christian@settle.eu>",
"type": "module",
"url": "https://github.com/SettleAPI/settle-sdk-node/blob/master/LICENSE",
"bugs": {
"url": "https://github.com/SettleAPI/settle-sdk-node/issues"
},
"homepage": "https://github.com/SettleAPI/settle-sdk-node#readme",
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-eslint": "^10.0.1",
"babel-plugin-add-module-exports": "^1.0.0",
"babel-polyfill": "^6.26.0",
"babel-preset-env": "^1.6.1",
"babel-preset-minify": "^0.5.0",
"chai": "^4.1.2",
"cross-env": "7.0.3",
"eslint": "7.31.0",
"eslint-config-airbnb": "18.2.1",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-jsx-a11y": "^6.0.2",
"eslint-plugin-react": "^7.4.0",
"mocha": "9.0.2",
"nyc": "15.1.0",
"rimraf": "3.0.2"
},
"dependencies": {
"body-parser": "^1.19.0",
"debug": "4.3.2",
"lodash": "4.17.21",
"superagent": "0.18.0"
}
}