-
Notifications
You must be signed in to change notification settings - Fork 41
/
package.json
39 lines (39 loc) · 972 Bytes
/
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
{
"name": "mangopay2-nodejs-sdk",
"version": "1.48.1",
"types": "./typings/index.d.ts",
"description": "Mangopay Node.js SDK",
"repository": "https://github.com/Mangopay/mangopay2-nodejs-sdk.git",
"license": "MIT",
"keywords": [
"mangopay",
"nodejs",
"sdk",
"credit cards",
"api"
],
"engines": {
"node": ">= v0.10.0"
},
"main": "./index.js",
"dependencies": {
"@types/node": "14.14.x",
"axios": "1.7.5",
"promise": "8.1.x",
"underscore": "1.12.x"
},
"devDependencies": {
"chai": "4.2.x",
"dtslint": "4.2.1",
"mocha": "9.2.0",
"sinon": "9.2.x",
"ts-node": "^9.1.1",
"typescript": "4.1.x"
},
"scripts": {
"start": "npm install -g mocha && npm install -g jsdox && npm install",
"documentation": "jsdox -t docs/templates/ -i README -o docs lib/services",
"test": "mocha 'test/**/*.js' --recursive --timeout 30000 --ui bdd",
"test:types": "dtslint ./typings"
}
}