2022-01-29 10:57:04 +00:00
|
|
|
{
|
|
|
|
"name": "romulus-js",
|
|
|
|
"version": "1.0.0",
|
|
|
|
"description": "An implementation of the Romulus-M cryptography specification.",
|
|
|
|
"main": "index.js",
|
|
|
|
"scripts": {
|
2022-01-29 11:43:08 +00:00
|
|
|
"lint": "ts-standard",
|
2022-01-29 11:33:05 +00:00
|
|
|
"test": "jest",
|
|
|
|
"build": "tsc"
|
2022-01-29 10:57:04 +00:00
|
|
|
},
|
|
|
|
"repository": {
|
|
|
|
"type": "git",
|
|
|
|
"url": "https://git.jacknet.io/TerribleCodeClub/romulus-js"
|
|
|
|
},
|
|
|
|
"author": "Butlersaurus",
|
2022-01-29 11:00:51 +00:00
|
|
|
"license": "ISC",
|
|
|
|
"devDependencies": {
|
2022-01-29 11:33:05 +00:00
|
|
|
"typescript": "^4.5.5",
|
2022-01-29 11:00:51 +00:00
|
|
|
"ts-standard": "^11.0.0",
|
2022-01-29 11:33:05 +00:00
|
|
|
"jest": "^27.4.7",
|
|
|
|
"ts-jest": "^27.1.3",
|
|
|
|
"@types/jest": "^27.4.0"
|
|
|
|
},
|
|
|
|
"jest": {
|
|
|
|
"verbose": true,
|
|
|
|
"transform": {
|
|
|
|
"^.+\\.ts?$": "ts-jest"
|
|
|
|
}
|
2022-01-29 11:00:51 +00:00
|
|
|
}
|
2022-01-29 10:57:04 +00:00
|
|
|
}
|