forked from circlefin/circle-nodejs-sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
64 lines (64 loc) · 1.67 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
{
"name": "@circle-fin/circle-sdk",
"version": "1.6.2",
"description": "Node.js SDK for Circle API",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc",
"test": "jest",
"prepare": "husky install",
"lint": "eslint . --ext .ts",
"lint-fix": "eslint . --ext .ts --fix",
"format": "prettier --write .",
"format-check": "prettier --check src/",
"gen-sdk": "bash build-utils/gen-sdk.sh"
},
"repository": {
"type": "git",
"url": "git+https://github.com/circlefin/circle-nodejs-sdk.git"
},
"keywords": [
"circle",
"circle.com",
"usdc",
"euroc",
"stablecoins"
],
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/circlefin/circle-nodejs-sdk/issues"
},
"engines": {
"node": ">=10.0.0"
},
"dependencies": {
"axios": "0.21.4"
},
"homepage": "https://github.com/circlefin/circle-nodejs-sdk#readme",
"publishConfig": {
"registry": "https://registry.npmjs.com/"
},
"devDependencies": {
"@commitlint/cli": "^17.0.3",
"@commitlint/config-conventional": "^17.0.3",
"@openapitools/openapi-generator-cli": "^2.5.1",
"@types/jest": "^28.1.7",
"@types/mustache": "^4.2.1",
"@types/node": "^14.14.14",
"@typescript-eslint/eslint-plugin": "^5.0.0",
"eslint": "^8.0.1",
"eslint-config-standard-with-typescript": "^22.0.0",
"eslint-plugin-import": "^2.25.2",
"eslint-plugin-n": "^15.0.0",
"eslint-plugin-promise": "^6.0.0",
"husky": "^8.0.1",
"jest": "^28.1.3",
"jshint": "^2.11.0",
"mustache": "^4.2.0",
"prettier": "^2.7.1",
"ts-jest": "^28.0.8",
"ts-node": "10.9.1",
"typescript": "^4.7.4"
}
}