forked from CodeWithCarrie/javascript-fundamentals
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 913 Bytes
/
Copy pathpackage.json
File metadata and controls
33 lines (33 loc) · 913 Bytes
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
{
"name": "cwc-javascript-fundamentals",
"version": "1.0.0",
"description": "Examples and exercises for CodeWithCarrie.com tutorial collection: JavaScript Fundamentals",
"keywords": [
"javascript"
],
"homepage": "https://github.com/CodeWithCarrie/javascript-fundamentals#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/CodeWithCarrie/javascript-fundamentals.git"
},
"license": "ISC",
"author": "CodeWithCarrie.com (Caroline R. Jones)",
"type": "commonjs",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"format": "prettier . --write",
"format:check": "prettier . --check"
},
"dependencies": {
"readline-sync": "^1.4.10"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"eslint": "^10.2.0",
"eslint-config-prettier": "^10.1.8",
"globals": "^17.5.0",
"prettier": "^3.8.2"
}
}