-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathpackage.json
36 lines (36 loc) · 943 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
{
"name": "js-tests-mystery-3-eslint",
"version": "1.0.0",
"description": "",
"main": "src/mystery.js",
"scripts": {
"test": "jest",
"lint": "node node_modules/eslint/bin/eslint.js .",
"start": "node src/mystery.js"
},
"directories": {
"src": "src",
"test": "test"
},
"type": "module",
"dependencies": {
"jest": "^27.3.1"
},
"devDependencies": {
"@babel/core": "^7.2.0",
"@babel/node": "^7.16.0",
"@babel/preset-env": "^7.16.0",
"@eslint/eslintrc": "^3.2.0",
"@eslint/js": "^9.15.0",
"eslint": "^8.53.0",
"eslint-config-standard": "^17.1.0",
"eslint-plugin-import": "^2.29.0",
"eslint-plugin-jest": "^27.6.0",
"eslint-plugin-node": "^11.1.0",
"globals": "^15.12.0"
},
"resolutions": {
"@babel/preset-env": "7.13.8"
},
"keywords": []
}