forked from HandCash/handcash-connect-sdk-js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
65 lines (65 loc) · 1.91 KB
/
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
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
{
"name": "@handcash/handcash-connect",
"version": "0.5.0",
"description": "HandCash Connect SDK",
"main": "src/index.js",
"types": "types/index.d.ts",
"scripts": {
"test": "NODE_ENV=test mocha \"test/**/*.test.js\" --timeout 10000 --file test/setup.js --exit",
"start": "node src/app/app.js",
"lint_src": "eslint --ext .js src/",
"lint_test": "eslint --ext .test.js test/",
"coverage": "NODE_ENV=test nyc mocha \"test/**/*.test.js\" --timeout 10000 --exit --file test/setup.js"
},
"keywords": [],
"author": "HandCash Labs S.L",
"license": "ISC",
"dependencies": {
"awilix": "^4.2.2",
"axios": "^0.21.1",
"bsv": "^1.5.4",
"crypto-js": "^3.1.9-1",
"dotenv": "^8.1.0",
"dotenv-flow": "^3.1.0",
"esm": "^3.2.25",
"lodash": "^4.17.19",
"run-sdk": "^0.6.41",
"underscore": "^1.9.1"
},
"devDependencies": {
"@babel/core": "^7.17.12",
"@typescript-eslint/eslint-plugin": "^5.29.0",
"@typescript-eslint/parser": "^5.29.0",
"b64-lite": "^1.4.0",
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"eslint": "^7.1.1",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-airbnb-typescript": "^17.0.0",
"eslint-config-prettier": "^8.5.0",
"eslint-import-resolver-webpack": "^0.11.1",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-mocha": "^5.3.0",
"mocha": "^6.2.0",
"npm-run-all": "^4.1.5",
"nyc": "^13.3.0",
"prettier-eslint": "^9.0.0",
"sinon": "^7.5.0",
"supertest": "^4.0.2",
"typescript": "^4.7.4"
},
"optionalDependencies": {
"win-node-env": "^0.4.0"
},
"directories": {
"test": "test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/HandCash/handcash-connect-sdk-js.git"
},
"bugs": {
"url": "https://github.com/HandCash/handcash-connect-sdk-js/issues"
},
"homepage": "https://github.com/HandCash/handcash-connect-sdk-js#readme"
}