-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
32 lines (32 loc) · 989 Bytes
/
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
{
"name": "ccd-school-agility-katas-viewing-csv-files-i",
"version": "1.0.0",
"description": "Agility Kata “Viewing CSV Files I” from Clean Code Developer School",
"main": "index.js",
"type": "module",
"scripts": {
"eslint": "npx eslint .",
"eslint:fix": "npx eslint . --fix",
"start": "node index.js persons.csv",
"test": "node --experimental-vm-modules node_modules/jest/bin/jest.js"
},
"jest": {
"transform": {}
},
"repository": {
"type": "git",
"url": "git+https://github.com/matttk/ccd-school-agility-katas-viewing-csv-files-i.git"
},
"author": "Matthew Kirschnick",
"license": "ISC",
"bugs": {
"url": "https://github.com/matttk/ccd-school-agility-katas-viewing-csv-files-i/issues"
},
"homepage": "https://github.com/matttk/ccd-school-agility-katas-viewing-csv-files-i#readme",
"devDependencies": {
"eslint": "^8.4.1",
"eslint-plugin-jest": "^25.3.0",
"jest": "^27.4.3",
"prettier": "^2.5.1"
}
}