Files
romulus/package.json

38 lines
828 B
JSON

{
"name": "romulus-js",
"version": "1.0.0",
"description": "An implementation of the Romulus-M cryptography specification.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"lint": "prettier --check .",
"format": "prettier --write .",
"test": "jest",
"build": "tsc",
"postinstall": "tsc"
},
"repository": {
"type": "git",
"url": "https://git.jacknet.io/TerribleCodeClub/romulus-js"
},
"author": "Butlersaurus",
"license": "ISC",
"devDependencies": {
"@types/jest": "^30.0.0",
"jest": "^30.1.3",
"prettier": "^3.6.2",
"ts-jest": "^29.4.1",
"typescript": "^5.9.2"
},
"jest": {
"verbose": true,
"transform": {
"^.+\\.ts?$": "ts-jest"
}
},
"dependencies": {
"@types/uuid": "^10.0.0",
"uuid": "^11.1.0"
}
}