grasshopper-ts
Version:
Grasshopper GOST 3412-2015 ECB implementation with TypeScript
47 lines (46 loc) • 1.29 kB
JSON
{
"name": "grasshopper-ts",
"version": "1.0.1",
"description": "Grasshopper GOST 3412-2015 ECB implementation with TypeScript",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"scripts": {
"build": "tsc",
"lint": "tslint --config tslint.json 'src/**/*.ts'",
"format": "prettier --write \"src/**/*.ts\" \"src/**/*.js\"",
"test": "jest --config jestconfig.json",
"prepare": "yarn build",
"prepublishOnly": "yarn && yarn lint",
"preversion": "yarn lint",
"version": "yarn format && git add -A src",
"postversion": "git push && git push --tags"
},
"files": [
"lib/**/*"
],
"repository": {
"type": "git",
"url": "https://github.com/kaystd/grasshopper-ts.git"
},
"keywords": [
"Grasshopper",
"GOST 3412-2015",
"ECB"
],
"author": "kaystd",
"license": "MIT",
"bugs": {
"url": "https://github.com/kaystd/grasshopper-ts/issues"
},
"homepage": "https://github.com/kaystd/grasshopper-ts#readme",
"devDependencies": {
"@types/jest": "^24.0.15",
"@types/node": "^12.6.9",
"jest": "^24.8.0",
"prettier": "^1.18.2",
"ts-jest": "^24.0.2",
"tslint": "^5.18.0",
"tslint-config-prettier": "^1.18.0",
"typescript": "^3.5.3"
}
}