mirror of
https://github.com/arthur-pbty/portfolio2023.git
synced 2026-06-03 23:36:21 +02:00
73 lines
1.4 KiB
JSON
73 lines
1.4 KiB
JSON
{
|
|
"name": "tsse",
|
|
"version": "2.1.0",
|
|
"description": "Constant time string/buffer equals",
|
|
"license": "MIT",
|
|
"homepage": "https://github.com/simonepri/tsse#readme",
|
|
"repository": "github:simonepri/tsse",
|
|
"bugs": {
|
|
"url": "https://github.com/simonepri/tsse/issues",
|
|
"email": "simonepri@outlook.com"
|
|
},
|
|
"author": "Simone Primarosa <simonepri@outlook.com> (https://simoneprimarosa.com)",
|
|
"contributors": [
|
|
"Simone Primarosa <simonepri@outlook.com> (https://simoneprimarosa.com)"
|
|
],
|
|
"keywords": [
|
|
"tse",
|
|
"tsse",
|
|
"tsscmp",
|
|
"scmp",
|
|
"cmp",
|
|
"safe",
|
|
"timing",
|
|
"string",
|
|
"comparison",
|
|
"constant time",
|
|
"equals",
|
|
"equal",
|
|
"compare"
|
|
],
|
|
"main": "index.js",
|
|
"files": [
|
|
"index.js"
|
|
],
|
|
"engines": {
|
|
"node": ">=4"
|
|
},
|
|
"scripts": {
|
|
"lint": "xo",
|
|
"test": "nyc ava",
|
|
"test:windows": "ava",
|
|
"bench": "node bench.js",
|
|
"release": "npx np",
|
|
"update": "npx npm-check -u"
|
|
},
|
|
"dependencies": {
|
|
"safe-buffer": "^5.1.1"
|
|
},
|
|
"devDependencies": {
|
|
"ava": "~0.25.0",
|
|
"nyc": "^11.6.0",
|
|
"present": "^1.0.0",
|
|
"string.prototype.padstart": "^3.1.3",
|
|
"xo": "~0.20.3"
|
|
},
|
|
"ava": {
|
|
"verbose": true
|
|
},
|
|
"nyc": {
|
|
"reporter": [
|
|
"lcovonly",
|
|
"text"
|
|
]
|
|
},
|
|
"xo": {
|
|
"prettier": true,
|
|
"space": true,
|
|
"rules": {
|
|
"prefer-destructuring": "off"
|
|
}
|
|
}
|
|
}
|