-
Notifications
You must be signed in to change notification settings - Fork 32
/
package.json
46 lines (46 loc) · 1.3 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
{
"name": "a-walk-in-javascript",
"version": "1.13.3",
"description": "A day by day walk through the basics of javascript assisted with notes, exercises and references to the most significant resources online",
"main": "''",
"scripts": {
"test": "jest -c jest.config.json --coverage",
"test:watch": "jest -c jest.config.json --watchAll",
"lint": "eslint src/**/*.js",
"lint-w": "esw -w --color src/**/*.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Jaxolotl/a-walk-in-javascript.git"
},
"keywords": [
"javascript",
"JS",
"ES6",
"ECMAScript"
],
"author": "Javier Valderrama",
"license": "MIT",
"bugs": {
"url": "https://github.com/Jaxolotl/a-walk-in-javascript/issues"
},
"homepage": "https://github.com/Jaxolotl/a-walk-in-javascript#readme",
"devDependencies": {
"@babel/cli": "^7.23.9",
"@babel/core": "^7.24.0",
"@babel/preset-env": "^7.24.0",
"@jaxolotl/eslint-config-wdc-es6": "^1.2.0",
"babel-eslint": "^10.1.0",
"eslint": "^8.57.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-standard": "^5.0.0",
"jest": "^29.7.0",
"jest-cli": "^29.7.0"
},
"volta": {
"node": "20.11.0",
"yarn": "4.1.0"
}
}