forked from Mangopay/mangopay2-nodejs-sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 958 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
{
"name": "mangopay2-nodejs-sdk",
"version": "1.16.0",
"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",
"node-rest-client": "3.1.0",
"promise": "8.1.x",
"typescript": "4.1.x",
"underscore": "1.12.x"
},
"devDependencies": {
"chai": "4.2.x",
"dtslint": "4.0.6",
"mocha": "8.2.x",
"sinon": "9.2.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 60000 --ui bdd",
"test:types": "dtslint ./typings"
}
}