@dataswift/hat-js
Version:
HAT JavaScript SDK for web and Node.js
58 lines (57 loc) • 1.48 kB
JSON
{
"name": "@dataswift/hat-js",
"version": "v0.5.0",
"description": "HAT JavaScript SDK for web and Node.js",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"repository": "git@github.com:dataswift/hat-js-sdk.git",
"publishConfig": {
"access": "restricted"
},
"scripts": {
"build": "tsc",
"build:standalone": "webpack --mode production",
"format": "prettier --write \"src/**/*.ts\" \"src/**/*.js\"",
"test": "jest --config jestconfig.json",
"test:coverage": "jest --config jestconfig.json --coverage",
"test:ci": "jest --watchAll=false --ci --coverage --reporters=default --reporters=jest-junit --config jestconfig.json",
"lint": "tslint -p tsconfig.json"
},
"keywords": [
"HAT",
"SDK",
"Dataswift",
"Hatters"
],
"author": "Dataswift Ltd",
"license": "MPL-2.0",
"devDependencies": {
"@types/jest": "^26.0.21",
"@types/jwt-decode": "^3.1.0",
"@types/node": "^14.14.35",
"jest": "^26.6.3",
"jest-fetch-mock": "^3.0.3",
"jest-junit": "^12.0.0",
"prettier": "^2.2.1",
"ts-jest": "^26.5.4",
"ts-loader": "^8.0.18",
"tslint": "^6.1.3",
"tslint-config-prettier": "^1.18.0",
"typescript": "^4.2.3",
"webpack": "^5.28.0",
"webpack-cli": "^4.5.0"
},
"files": [
"lib/**/*"
],
"dependencies": {
"cross-fetch": "^3.1.2",
"jwt-decode": "^3.1.2"
},
"jest": {
"automock": false,
"setupFiles": [
"./setupJest.js"
]
}
}