Skip to content
Snippets Groups Projects
package.json 792 B
Newer Older
{
	"name": "@rocket.chat/sha256",
	"description": "SHA256 implementation; Fork of Meteor's SHA256 package",
	"version": "1.0.9",
	"main": "./dist/sha256.js",
	"types": "./dist/sha256.d.ts",
	"scripts": {
		"build": "rm -rf dist && tsc -p tsconfig.build.json",
		"dev": "tsc -p tsconfig.build.json --watch --preserveWatchOutput",
		"lint": "eslint .",
		"lint:fix": "eslint . --fix",
		"test": "jest"
	},
	"devDependencies": {
		"@babel/core": "~7.20.5",
		"@babel/preset-env": "~7.20.2",
		"@rocket.chat/eslint-config": "workspace:^",
		"@typescript-eslint/eslint-plugin": "^5.30.7",
		"@typescript-eslint/parser": "^5.30.7",
		"eslint": "^8.29.0",
		"jest": "~29.5.0",
		"ts-jest": "~29.0.5",
		"typescript": "~5.0.2"
	},
	"volta": {
		"extends": "../../package.json"
	}
}