forked from techreturners/js_coding_exercises
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
27 lines (27 loc) · 749 Bytes
/
package.json
File metadata and controls
27 lines (27 loc) · 749 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
{
"name": "js_practice_march2020",
"version": "1.0.0",
"description": "A repository of JavaScript challenges for you to work on throughout the course",
"main": "index.js",
"scripts": {
"test": "jest",
"eslint": "eslint ./"
},
"repository": {
"type": "git",
"url": "git+https://github.com/techreturners/js_practice_march2020.git"
},
"keywords": [],
"author": "Tech Returners",
"license": "MIT",
"bugs": {
"url": "https://github.com/techreturners/js_practice_march2020/issues"
},
"homepage": "https://github.com/techreturners/js_practice_march2020#readme",
"devDependencies": {
"@babel/core": "^7.20.2",
"@babel/preset-env": "^7.20.2",
"babel-jest": "^29.3.1",
"jest": "^29.3.1"
}
}