-
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 2.34 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 2.34 KB
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
{
"name": "algorithm-exercises-js",
"version": "1.0.0",
"description": "Algorithm exercises solved in Javascript ECMA6, running with Jest testing suite. Developed with TDD.",
"main": "src/problem0000.js",
"scripts": {
"build": "npx --yes copyfiles --verbose -R --up 1 -e \"**/*.test.js\" -e \"**/*.config.js\" \"**/*.js\" dist/",
"start": "npm run test",
"lint": "npx --yes eslint . --color --max-warnings=0 && echo '✔ Your code looks good.'",
"lint:watch": "npx --yes esw . --color --max-warnings=0 --watch",
"jest:ci": "cross-env NODE_OPTIONS=--experimental-vm-modules npx jest --no-cache --ci --color --detectOpenHandles --forceExit --runInBand --debug",
"jest:clean": "npx --yes jest --clearCache && npx --yes watchman watch-del-all",
"jest:bruteforce": "cross-env BRUTEFORCE=true NODE_OPTIONS=--experimental-vm-modules npx jest --no-cache --ci --color --detectOpenHandles --forceExit --runInBand --debug",
"jest:watch": "cross-env NODE_OPTIONS=--experimental-vm-modules npx jest --no-cache --ci --color --detectOpenHandles --forceExit --runInBand --debug --watchAll",
"style:format": "npx --yes prettier --write 'src/**/*.js'",
"style:check": "npx --yes prettier --check 'src/**/*.js'",
"test": "npm run jest:ci",
"test:all": "npm run lint && npm run test && echo 'Done.'",
"test:watch": "npx --yes concurrently -k -s first --names \"LINT,TEST\" -p \"[{name}]\" \"npm run lint:watch\" \"npm run jest:watch\"",
"update-all": "npm install $(npm outdated | cut -d' ' -f 1 | sed '1d' | xargs -I '$' echo '$@latest' | xargs echo)"
},
"author": "Gonzalo Diaz <devel@gon.cl>",
"license": "MIT",
"type": "module",
"devDependencies": {
"@babel/eslint-parser": "^7.28.6",
"@babel/plugin-syntax-import-assertions": "^7.28.6",
"@eslint/compat": "^2.0.5",
"@eslint/eslintrc": "^3.3.5",
"@eslint/js": "^10.0.1",
"@jest/globals": "^30.0.0",
"concurrently": "9.2.1",
"cross-env": "^10.0.0",
"eslint": "^9.39.2",
"eslint-config-airbnb-base": "15.0.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-import": "2.32.0",
"eslint-plugin-jest": "^29.15.2",
"eslint-plugin-prettier": "^5.5.5",
"eslint-watch": "8.0.0",
"globals": "^17.5.0",
"jest": "30.3.0",
"prettier": "3.8.2"
},
"dependencies": {
"pino": "^10.3.1",
"pino-pretty": "^13.1.1"
}
}