-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.28 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
{
"name": "@santi100/randomjs-game",
"version": "0.0.1",
"description": "Random Number Game: Guess the number!",
"main": "dist/index.js",
"author": "santi100a <santyrojasprieto9+npmauthor@gmail.com>",
"license": "MIT",
"bin": "dist/index.js",
"repository": {
"type": "git",
"url": "https://github.com/santi100a/randomjs-game"
},
"keywords": [
"cli",
"cli-game",
"santi100",
"nodejs",
"random-numbers"
],
"scripts": {
"start": "node .",
"build": "tsc",
"test": "echo \"No test specified\"",
"dev": "tsc -w",
"lint": "eslint src/**/*.ts",
"lint:fix": "eslint --fix src/**/*.ts",
"check-links": "remark --frail .",
"validate-package-json": "node scripts/validate-package-json.js"
},
"dependencies": {
"@santi100/coloring-lib": "^1.1.2",
"@santi100/random-lib": "^1.1.6",
"commander": "^11.0.0",
"readline-sync": "^1.4.10"
},
"devDependencies": {
"@types/commander": "^2.12.2",
"@types/jest": "^29.5.2",
"@types/node": "^16.18.37",
"@types/readline-sync": "^1.4.4",
"@typescript-eslint/eslint-plugin": "^5.60.1",
"@typescript-eslint/parser": "^5.60.1",
"eslint": "^8.43.0",
"eslint-plugin-jest": "^27.2.2",
"jest": "^29.5.0",
"remark-cli": "^11.0.0",
"remark-gfm": "^3.0.1",
"remark-validate-links": "^12.1.1",
"typescript": "4.9.5"
}
}