Project setup

This commit is contained in:
Jack Hadrill
2022-01-29 11:33:05 +00:00
parent 736c1b208b
commit 20cf4e0731
6 changed files with 6034 additions and 5 deletions

View File

@@ -4,7 +4,8 @@
"description": "An implementation of the Romulus-M cryptography specification.",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
"test": "jest",
"build": "tsc"
},
"repository": {
"type": "git",
@@ -13,7 +14,16 @@
"author": "Butlersaurus",
"license": "ISC",
"devDependencies": {
"typescript": "^4.5.5",
"ts-standard": "^11.0.0",
"typescript": "^4.5.5"
"jest": "^27.4.7",
"ts-jest": "^27.1.3",
"@types/jest": "^27.4.0"
},
"jest": {
"verbose": true,
"transform": {
"^.+\\.ts?$": "ts-jest"
}
}
}