-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
48 lines (48 loc) · 1.39 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
{
"name": "@hyperledger/firefly-sdk",
"version": "1.3.1",
"description": "Client SDK for Hyperledger FireFly",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"prebuild": "rimraf dist",
"build": "tsc",
"prepare": "npm run build",
"test": "mocha -r ts-node/register --bail --timeout 30000 'test/**/*.ts'",
"lint": "eslint \"lib/*.ts\"",
"lint:fix": "eslint \"lib/*.ts\" --fix",
"format": "prettier --write \"lib/*.ts\" \"examples/**/*.ts\"",
"schema": "node scripts/schema.mjs"
},
"repository": {
"type": "git",
"url": "git+https://github.com/hyperledger/firefly-sdk-nodejs.git"
},
"author": "",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/hyperledger/firefly-sdk-nodejs/issues"
},
"homepage": "https://github.com/hyperledger/firefly-sdk-nodejs#readme",
"devDependencies": {
"@types/mocha": "^9.1.1",
"@types/sinon": "^10.0.13",
"@types/ws": "^8.5.10",
"@typescript-eslint/eslint-plugin": "^5.17.0",
"@typescript-eslint/parser": "^5.19.0",
"eslint": "^8.12.0",
"eslint-plugin-import": "^2.25.4",
"mocha": "^10.0.0",
"openapi-typescript": "^5.4.1",
"prettier": "^2.6.1",
"rimraf": "^3.0.2",
"sinon": "^14.0.0",
"ts-node": "^10.7.0",
"typescript": "^4.6.3"
},
"dependencies": {
"axios": "^1.6.8",
"form-data": "^4.0.0",
"ws": "^8.17.1"
}
}