generated from TheBookKnight/nodejs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 979 Bytes
/
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
{
"name": "choose-your-adventure",
"version": "1.1.1",
"description": "CLI template for Choose Your Adventure games",
"keywords": [
"nodejs",
"javascript"
],
"homepage": "https://github.com/TheBookKnight/choose-your-adventure#readme",
"bugs": {
"url": "https://github.com/TheBookKnight/choose-your-adventure/issues"
},
"repository": {
"type": "git",
"url": "[email protected]:TheBookKnight/choose-your-adventure.git"
},
"license": "ISC",
"author": "Joshua Cadavez",
"type": "module",
"main": "./index.js",
"scripts": {
"lint": "eslint .",
"start:example": "node ./example/index.js",
"test": "jest"
},
"devDependencies": {
"@babel/core": "^7.26.9",
"@babel/preset-env": "^7.26.9",
"@eslint/js": "^9.21.0",
"babel-jest": "^29.7.0",
"eslint": "^9.22.0",
"eslint-plugin-jest": "^28.11.0",
"globals": "^16.0.0",
"jest": "^29.7.0"
},
"dependencies": {
"terminal-kit": "^3.1.2"
}
}