forked from SynapseFI/SynapseNode
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 817 Bytes
/
package.json
File metadata and controls
35 lines (35 loc) · 817 Bytes
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
{
"name": "synapsenode",
"version": "2.0.0-beta",
"description": "Node.js Library for SynapseFI API v3.1 Rest",
"main": "dist/index.js",
"files": [
"dist"
],
"scripts": {
"test": "mocha --recursive --timeout 100000",
"test-nodes": "mocha --recursive test/nodesTests/*.js --timeout 100000",
"build": "tsc --build",
"clean": "rm -rf dist",
"dist": "npm run clean && npm run build",
"push": "npm run clean && npm run build && npm publish"
},
"keywords": [
"API",
"payments",
"synapsefi",
"synapsepay"
],
"author": "",
"license": "MIT",
"devDependencies": {
"@types/axios": "^0.14.0",
"@types/chai": "^4.3.3",
"@types/node": "^18.11.3",
"chai": "^4.3.6",
"typescript": "^4.8.4"
},
"dependencies": {
"axios": "^1.1.3"
}
}