-
Notifications
You must be signed in to change notification settings - Fork 150
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 867 Bytes
/
package.json
File metadata and controls
35 lines (35 loc) · 867 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
34
35
{
"name": "nodejs-files",
"version": "1.0.0",
"description": "a simple code sample to teach how to read and write files in Node.js applications",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "eslint \"./**/*.js\" --fix",
"format": "prettier \"./**/*.js\" --write",
"precommit": "npm run format && git add . && npm run lint"
},
"keywords": [
"javascript",
"nodejs",
"azure",
"mslearning",
"microsoft-learn",
"tutorial"
],
"author": "",
"license": "MIT",
"devDependencies": {
"@babel/eslint-parser": "^7.24.1",
"eslint": "^8.57.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.29.1",
"husky": "^9.1.7",
"prettier": "^3.3.1"
},
"husky": {
"hooks": {
"pre-commit": "npm run precommit"
}
}
}