-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.31 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
{
"name": "@cryptlex/web-api-client",
"version": "1.2.1",
"description": "Client library for the Cryptlex Web API",
"type": "module",
"source": "src/index.ts",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"engines": {
"node": ">= 14.13"
},
"scripts": {
"build": "tsc",
"dev": "tsc --watch",
"generate-docs": "npx jsdoc-to-markdown dist/*.js > docs/functions.md",
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "eslint --fix . && prettier --write .",
"prepare": "husky install"
},
"repository": {
"type": "git",
"url": "git+https://github.com/cryptlex/web-api-client-js.git"
},
"keywords": [
"cryptlex"
],
"author": "Cryptlex",
"license": "ISC",
"bugs": {
"url": "https://github.com/cryptlex/web-api-client-js/issues"
},
"homepage": "https://github.com/cryptlex/web-api-client-js#readme",
"devDependencies": {
"@commitlint/cli": "17.3.0",
"@commitlint/config-conventional": "17.3.0",
"@typescript-eslint/eslint-plugin": "5.44.0",
"@typescript-eslint/parser": "5.44.0",
"eslint": "8.28.0",
"eslint-config-prettier": "8.5.0",
"husky": "8.0.2",
"jsdoc-to-markdown": "^8.0.0",
"lint-staged": "13.0.4",
"prettier": "2.8.0",
"typescript": "4.9.3"
},
"dependencies": {
"axios": "1.1.3"
}
}