-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
37 lines (37 loc) · 1.09 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
{
"name": "jlock",
"version": "0.1.0",
"author": "pikesley",
"license": "MIT",
"devDependencies": {
"@babel/plugin-transform-modules-commonjs": "^7.23.3",
"@testing-library/jest-dom": "^5.17.0",
"babel-cli": "^6.26.0",
"braces": "^3.0.2",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"glob": "^10.3.10",
"glob-parent": "^6.0.2",
"jest": "^27.5.1",
"jest-junit": "^16.0.0",
"prettier": "^3.2.5",
"sass-true": "^6.1.0",
"socket.io-mock": "^1.3.2",
"xunit-viewer": "^10.5.1"
},
"scripts": {
"jest-dom": "JEST_JUNIT_OUTPUT_NAME=jest-dom-junit.xml jest --testPathIgnorePatterns scss --bail",
"jest-sass": "JEST_JUNIT_OUTPUT_NAME=jest-sass-junit.xml jest --env node tests/sass/scss.spec.js",
"test": "npm run jest-dom && npm run jest-sass",
"test-debug": "node --inspect-brk=0.0.0.0 ./node_modules/jest/bin/jest.js",
"lint": "eslint static/"
},
"jest-junit": {
"outputDirectory": "junit/"
},
"dependencies": {
"sass": "^1.70.0",
"socket.io-client": "^4.7.4"
}
}