-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
33 lines (33 loc) · 1.06 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
{
"name": "js-exercises",
"private": true,
"version": "1.0.0",
"description": "Basic JS exercises to practice TDD and develop your logic",
"main": "index.js",
"scripts": {
"test": "jest",
"test:fizzbuzz": "jest tests/fizzbuzz.test.js",
"test:fizzbuzz:watch": "jest --watchAll tests/fizzbuzz.test.js",
"test:roman": "jest tests/roman_numbers.test.js",
"test:roman:watch": "jest --watchAll tests/roman_numbers.test.js",
"test:english_number_names": "jest tests/english_number_names.test.js",
"test:english_number_names:watch": "jest --watchAll tests/english_number_names.test.js",
"test:time": "jest tests/time.test.js",
"test:time:watch": "jest --watchAll tests/time.test.js",
"lint": "eslint --fix src tests ",
"format": "prettier-eslint --write $PWD/**/*.js"
},
"keywords": [
"tdd",
"js",
"exercises"
],
"author": "Benjamin Cisneros",
"license": "ISC",
"devDependencies": {
"eslint": "^6.8.0",
"eslint-plugin-jest": "^23.8.2",
"jest": "^29.7.0",
"prettier-eslint-cli": "^5.0.0"
}
}