-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 786 Bytes
/
package.json
File metadata and controls
29 lines (29 loc) · 786 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
{
"name": "kryptos-typescript",
"version": "1.0.0",
"description": "Annotated TypeScript code for encoding and decoding Kryptos K1-K3",
"main": "index.js",
"directories": {
"example": "examples",
"lib": "lib"
},
"scripts": {
"test": "node --test --require ts-node/register ./test/*.test.*ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/isaaclyman/kryptos-typescript.git"
},
"author": "Isaac Lyman",
"license": "UNLICENSED",
"bugs": {
"url": "https://github.com/isaaclyman/kryptos-typescript/issues"
},
"homepage": "https://github.com/isaaclyman/kryptos-typescript#readme",
"devDependencies": {
"@types/node": "^20.11.7",
"mathjs": "^12.3.0",
"ts-node": "^10.9.2",
"typescript": "^5.3.3"
}
}