-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
60 lines (60 loc) · 1.26 KB
/
package.json
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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
{
"name": "chess-steg-cli",
"version": "1.2.5",
"description": "Client for chess steganography - Hiding messages in chess games",
"main": "index.js",
"author": {
"name": "Jonas Enge",
"email": "jonas.enge@t-fk.no",
"url": "https://github.com/maccyber"
},
"contributors": [
{
"name": "Geir Gåsodden",
"email": "geir.gasodden@pythonia.no",
"url": "https://github.com/zrrrzzt"
}
],
"scripts": {
"test": "standard && npm audit && ava",
"standard-fix": "standard --fix",
"refresh": "rm -rf node_modules && rm package-lock.json && npm install"
},
"standard": {
"ignore": [
"src/*"
]
},
"files": [
"src/*",
"bin/*"
],
"bin": {
"chess-steg": "./bin/chess-steg"
},
"keywords": [
"chess",
"steganography",
"chess-steg"
],
"repository": {
"type": "git",
"url": "git+https://github.com/Alheimsins/chess-steg-cli.git"
},
"bugs": {
"url": "https://github.com/Alheimsins/chess-steg-cli/issues"
},
"license": "MIT",
"dependencies": {
"args": "5.0.1",
"axios": "0.24.0",
"big-integer": "1.6.51",
"chess.js": "0.12.0",
"clipboardy": "3.0.0",
"opn": "5.5.0"
},
"devDependencies": {
"ava": "3.15.0",
"standard": "16.0.4"
}
}