-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 1.17 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": "market-pulse-extension",
"version": "1.0.0",
"description": "Chrome extension for tracking market indices",
"main": "popup.js",
"type": "module",
"scripts": {
"test": "NODE_OPTIONS=--experimental-vm-modules jest --no-cache",
"test:watch": "NODE_OPTIONS=--experimental-vm-modules jest --watch --no-cache",
"test:coverage": "NODE_OPTIONS=--experimental-vm-modules jest --coverage --no-cache"
},
"devDependencies": {
"@babel/core": "^7.23.0",
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
"@babel/preset-env": "^7.22.20",
"babel-jest": "^29.7.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"jest-fetch-mock": "^3.0.3"
},
"jest": {
"testEnvironment": "jsdom",
"setupFilesAfterEnv": [
"./jest.setup.js"
],
"moduleNameMapper": {
"^@/(.*)$": "<rootDir>/$1"
},
"transform": {
"^.+\\.[t|j]sx?$": "babel-jest"
},
"transformIgnorePatterns": [
"node_modules/(?!(@babel/runtime)/)"
],
"moduleFileExtensions": [
"js",
"jsx",
"json",
"node"
],
"collectCoverageFrom": [
"js/**/*.js",
"!**/node_modules/**"
]
}
}