-
Notifications
You must be signed in to change notification settings - Fork 77
/
Copy pathpackage.json
45 lines (45 loc) · 1.01 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
{
"name": "es6-and-beyond",
"version": "1.1.0",
"description": "es6-and-beyond",
"keywords": [],
"author": "Dani Lucaci <[email protected]>",
"license": "MIT",
"main": "index.js",
"scripts": {
"start": "parcel index.html --open",
"test": "jest --watchAll"
},
"repository": {
"type": "git",
"url": "https://github.com/assembler-institute/es6-and-beyond-exercises.git"
},
"browserslist": [
"since 2017-06"
],
"dependencies": {
"@babel/core": "7.17.8",
"@babel/preset-env": "7.16.11",
"@types/jest": "27.4.1",
"babel-jest": "27.5.1",
"jest": "27.5.1",
"parcel": "2.4.0"
},
"devDependencies": {
"@babel/eslint-parser": "7.17.0",
"eslint": "8.11.0",
"jest-transform-stub": "2.0.0"
},
"jest": {
"testEnvironment": "jsdom",
"transform": {
".+\\.(css|styl|less|sass|scss|png|jpg|ttf|woff|woff2)$": "jest-transform-stub",
"^.+\\.js$": "babel-jest"
}
},
"babel": {
"presets": [
"@babel/preset-env"
]
}
}