-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
59 lines (59 loc) · 1.54 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
{
"name": "node-hangman",
"version": "0.1.0",
"description": "A simple game of hangman you can play directly in the CLI",
"main": "Hangman.js",
"scripts": {
"start": "node Hangman.js",
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "eslint ./ && exit $?",
"build-win": "pkg -t node12-win-x64 -o build/Node-Hangman_Windows.exe .",
"build-linux": "pkg -t node12-linux-x64 -o build/Node-Hangman_Linux .",
"build-macos": "pkg -t node12-macos-x64 -o build/Node-Hangman_MacOS .",
"build": "node tools/prebuild.js && npm run build-win && npm run build-linux && npm run build-macos && node tools/postbuild.js",
"snyk-protect": "snyk protect",
"prepare": "npm run snyk-protect"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Sv443/Node-Hangman.git"
},
"keywords": [
"game",
"cli",
"command-line",
"hangman",
"node",
"javascript",
"js",
"node-js"
],
"author": {
"name": "Sv443",
"email": "[email protected]",
"url": "https://github.com/Sv443"
},
"license": "MIT",
"bugs": {
"email": "[email protected]",
"url": "https://github.com/Sv443/Node-Hangman/issues"
},
"homepage": "https://github.com/Sv443/Node-Hangman#readme",
"dependencies": {
"hidefile": "^3.0.0",
"node-machine-id": "^1.1.12",
"svjsl": "^1.8.3",
"snyk": "^1.316.1"
},
"devDependencies": {
"eslint": "^6.8.0",
"pkg": "^4.4.3"
},
"bin": "Hangman.js",
"pkg": {
"assets": [
"translations/*"
]
},
"snyk": true
}