romulus-js/package.json

37 lines
787 B
JSON
Raw Normal View History

2022-01-29 10:57:04 +00:00
{
"name": "romulus-js",
"version": "1.0.0",
"description": "An implementation of the Romulus-M cryptography specification.",
2022-01-31 01:03:18 +00:00
"main": "dist/index.js",
"types": "dist/index.d.ts",
2022-01-29 10:57:04 +00:00
"scripts": {
2022-01-29 11:43:08 +00:00
"lint": "ts-standard",
2022-01-29 11:33:05 +00:00
"test": "jest",
2022-01-31 00:50:42 +00:00
"build": "tsc",
2022-01-31 01:02:04 +00:00
"postinstall": "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": {
"@types/jest": "^27.4.0",
2022-01-29 11:33:05 +00:00
"jest": "^27.4.7",
"ts-jest": "^27.1.3",
"ts-standard": "^11.0.0",
"typescript": "^4.5.5"
2022-01-29 11:33:05 +00:00
},
"jest": {
"verbose": true,
"transform": {
"^.+\\.ts?$": "ts-jest"
}
},
"dependencies": {
2022-02-06 02:26:19 +00:00
"uuid": "^8.3.2",
"@types/uuid": "^8.3.4"
2022-01-29 11:00:51 +00:00
}
2022-01-29 10:57:04 +00:00
}