-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 1.1 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
{
"name": "heads-and-tails-cli",
"version": "1.0.0",
"description": "Heads and tails game implemented as a console application using node.js",
"main": "index.js",
"scripts": {
"start": "node index.js",
"editorconfig": "editorconfig-checker",
"lint": "eslint **/*.js",
"lint:fix": "eslint --fix **/*.js",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/igorklyopov/heads-and-tails-cli.git"
},
"keywords": [
"heads and tails",
"game",
"cli",
"node.js"
],
"author": "Igor Klyopov <shoot8202@gmail.com>",
"license": "ISC",
"bugs": {
"url": "https://github.com/igorklyopov/heads-and-tails-cli/issues"
},
"homepage": "https://github.com/igorklyopov/heads-and-tails-cli#readme",
"dependencies": {
"colors": "^1.4.0",
"commander": "^8.3.0"
},
"devDependencies": {
"editorconfig-checker": "^4.0.2",
"eslint": "^7.19.0",
"eslint-config-standard": "^16.0.2",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-jest": "^26.0.0",
"jest": "^27.4.7"
}
}