forked from SynapseFI/SynapseNode
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.24 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.24 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
{
"name": "synapsenode",
"version": "1.2.16",
"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": "babel src -d dist",
"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": {
"axios": "^0.18.0",
"babel-cli": "^6.26.0",
"babel-core": "^6.26.3",
"babel-eslint": "^8.2.6",
"babel-loader": "^8.0.4",
"babel-preset-env": "^1.7.0",
"babel-preset-stage-2": "^6.24.1",
"chai": "^4.2.0",
"eslint": "^5.8.0",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-plugin-import": "^2.14.0",
"faker": "^4.1.0",
"husky": "^0.14.3",
"jest": "^23.6.0",
"lodash": "^4.17.11",
"mocha": "^5.2.0",
"randomatic": "^3.1.1"
},
"peerDependencies": {
"lodash": "^4.17.10",
"axios": "^0.18.0"
},
"dependencies": {
"dotenv": "^6.2.0",
"axios": "^0.18.0"
}
}