-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
61 lines (61 loc) · 1.55 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
{
"name": "coinvise",
"version": "0.2.0",
"description": "Coinvise SDK to interact with the Coinvise API (beta)",
"main": "./build/index.js",
"types": "./build/index.d.ts",
"author": "Coinvise <[email protected]> (https://coinvise.co/)",
"contributors": [
"Mihir Gupta <[email protected]> (https://www.mihirg.com/)"
],
"homepage": "https://github.com/coinvise/sdk-js",
"repository": {
"type": "git",
"url": "https://github.com/coinvise/sdk-js/"
},
"bugs": {
"url": "https://github.com/coinvise/sdk-js/issues"
},
"engines": {
"node": ">=12"
},
"scripts": {
"build": "tsc",
"lint": "eslint src/. && prettier --write --ignore-unknown src/.",
"prepare": "husky install && npm run lint && npm run build",
"prebuild": "npm run clean",
"clean": "rm -rf ./build",
"preversion": "npm run lint",
"version": "npm run build",
"postversion": "git push origin main && git push origin --tags"
},
"files": [
"build/**"
],
"keywords": [
"coinvise",
"blockchain",
"rest",
"coinvise-api"
],
"license": "MIT",
"devDependencies": {
"@types/node": "^15.6.1",
"@typescript-eslint/eslint-plugin": "^4.25.0",
"@typescript-eslint/parser": "^4.25.0",
"all-contributors-cli": "^6.20.0",
"eslint": "^7.27.0",
"eslint-config-prettier": "^8.3.0",
"husky": "^6.0.0",
"lint-staged": "^11.0.0",
"prettier": "^2.3.0",
"ts-node": "^10.0.0",
"typescript": "^4.2.4"
},
"dependencies": {
"got": "^11.8.2"
},
"lint-staged": {
"**/*": "npm run lint"
}
}