-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 1.23 KB
/
Copy pathpackage.json
File metadata and controls
32 lines (32 loc) · 1.23 KB
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
{
"name": "javascript-practical-foundations-study",
"version": "0.1.0",
"private": true,
"description": "JavaScriptの実践的な基礎をコードリーディング中心で学ぶための学習リポジトリ。",
"type": "module",
"engines": {
"node": ">=24"
},
"scripts": {
"unit:01": "node src/01-runtime-module-basics/index.js",
"unit:02": "node src/02-values-types-comparison/index.js",
"unit:03": "node src/03-variables-scope-reference/index.js",
"unit:04": "node src/04-functions-callbacks-closure/index.js",
"unit:05": "node src/05-objects-destructuring-immutability/index.js",
"unit:06": "node src/06-arrays-data-transform/index.js",
"unit:07": "node src/07-builtins-string-regexp-date/index.js",
"unit:08": "node src/08-error-handling-validation/index.js",
"unit:09": "node src/09-async-promise-fetch/index.js",
"unit:10": "node src/10-class-prototype-this-iterable/index.js",
"unit:12": "node src/12-node-json-practical-patterns/index.js",
"lint": "eslint .",
"format": "prettier --write .",
"format:check": "prettier --check ."
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"eslint": "^10.4.0",
"globals": "^17.6.0",
"prettier": "^3.8.3"
}
}