-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
83 lines (83 loc) · 1.98 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
{
"name": "minefield-js",
"version": "1.1.0",
"description": "A javascript implementation of the classic minefield game",
"private": true,
"main": "index.js",
"scripts": {
"start": "webpack-dev-server --mode development",
"build": "npm run test & npm run webpack",
"test": "standard & npm run jest",
"webpack": "webpack --mode production",
"standard": "standard",
"jest": "jest --verbose --coverage"
},
"repository": {
"type": "git",
"url": "git+https://github.com/lppjunior/minefield-js.git"
},
"author": "Luiz Paulo <lppjunior@gmail.com>",
"license": "MIT License",
"bugs": {
"url": "https://github.com/lppjunior/minefield-js/issues"
},
"homepage": "https://github.com/lppjunior/minefield-js#readme",
"dependencies": {
"@lppjunior/pattern-js": "git+https://github.com/lppjunior/pattern-js.git#master"
},
"devDependencies": {
"@babel/core": "^7.25.2",
"@babel/preset-env": "^7.25.3",
"@typescript-eslint/eslint-plugin": "^8.0.1",
"@typescript-eslint/parser": "^8.0.1",
"babel-jest": "^29.7.0",
"clean-webpack-plugin": "^4.0.0",
"copy-webpack-plugin": "^12.0.2",
"eslint": "^9.8.0",
"html-webpack-plugin": "^5.6.0",
"jest": "^29.7.0",
"standard": "^17.1.0",
"webpack": "^5.93.0",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^5.0.4"
},
"engines": {
"node": ">=20.0.0",
"npm": ">=8.x"
},
"jest": {
"coverageThreshold": {
"global": {
"branches": 80,
"functions": 80,
"lines": 80,
"statements": 80
}
},
"transform": {
"^.+\\.js$": "babel-jest"
},
"roots": [
"<rootDir>"
],
"modulePaths": [
"<rootDir>"
],
"moduleDirectories": [
"node_modules",
"src"
],
"transformIgnorePatterns": [
"/node_modules/(?!@lppjunior).+\\.js$"
]
},
"standard": {
"env": [
"jest"
],
"ignore": [
"/src-example/**/*.js",
"/dist/**/*.js"
]
}
}