-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1.15 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
{
"name": "sudoku",
"version": "1.0.0",
"description": "",
"main": "main.js",
"type": "module",
"scripts": {
"test": "NODE_OPTIONS=--experimental-vm-modules npx jest --config jest.config.mjs",
"coverage": "NODE_OPTIONS=--experimental-vm-modules npx jest --config jest.config.mjs --coverage",
"test:watch": "NODE_OPTIONS=--experimental-vm-modules npx jest --config jest.config.mjs --watch",
"build": "webpack",
"build:w": "webpack -w"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Gonzagadavid/sudoku.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/Gonzagadavid/sudoku/issues"
},
"homepage": "https://github.com/Gonzagadavid/sudoku#readme",
"devDependencies": {
"css-loader": "^6.3.0",
"eslint": "^7.28.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-plugin-import": "^2.23.4",
"file-loader": "^6.2.0",
"jest": "^27.1.1",
"jsdom": "16.7.0",
"style-loader": "^3.3.0",
"url-loader": "^4.1.1",
"webpack": "^5.56.0",
"webpack-cli": "^4.8.0"
},
"dependencies": {
"@jest/globals": "^27.1.1"
}
}