forked from worldline/JS-Training
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 683 Bytes
/
Copy pathpackage.json
File metadata and controls
30 lines (30 loc) · 683 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
{
"name": "js-training",
"version": "1.0.0",
"description": "Advanced JavaScript Training",
"repository": {
"type": "git",
"url": "https://github.com/worldline/JS-Training.git"
},
"main": "index.html",
"scripts": {
"start": "parcel index.html --open",
"build": "parcel build index.html",
"test": "jest"
},
"devDependencies": {
"@babel/core": "^7.17.9",
"@babel/preset-env": "^7.16.11",
"babel-jest": "^30.2.0",
"jest": "^30.2.0",
"parcel": "^2.4.1"
},
"keywords": [
"training",
"formation",
"javascript",
"advanced"
],
"browserslist": "last 5 Chrome versions, last 5 Firefox versions",
"jest": {}
}