-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 1.05 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
{
"name": "issuer-verifier-sdk",
"version": "1.0.0",
"description": "A JS/TS SDK for interacting with the Flex Issuer+Verifier API",
"main": "./dist/index.js",
"repository": "[email protected]:FlexFinTx/issuer-verifier-sdk.git",
"author": "Haardik <[email protected]>",
"license": "Apache2.0",
"private": true,
"scripts": {
"build": "tsc",
"dev": "ts-node-dev ./src/index.ts",
"start": "tsc && node ./dist/index.js",
"lint": "eslint . --ext .ts",
"test": "jest"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"devDependencies": {
"@commitlint/cli": "^9.1.1",
"@commitlint/config-conventional": "^9.1.1",
"@types/jest": "^26.0.13",
"@typescript-eslint/eslint-plugin": "^3.6.1",
"@typescript-eslint/parser": "^3.6.1",
"eslint": "^7.4.0",
"husky": "^4.2.5",
"jest": "^26.4.2",
"ts-jest": "^26.3.0",
"ts-node-dev": "^1.0.0-pre.52",
"typescript": "^3.9.7"
},
"dependencies": {
"@types/superagent": "^4.1.8",
"superagent": "^5.3.1"
}
}