41 lines
925 B
JSON
41 lines
925 B
JSON
{
|
|
"name": "romulus",
|
|
"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": "npm run build"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://git.3t.network/3t.network/romulus-js"
|
|
},
|
|
"publishConfig": {
|
|
"registry": "https://git.3t.network/api/packages/3t.network/npm/"
|
|
},
|
|
"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"
|
|
}
|
|
}
|