-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
35 lines (35 loc) · 963 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
33
34
35
{
"name": "data-transformations",
"version": "1.0.0",
"description": "A set of exercises for the data transformation day",
"main": "index.js",
"scripts": {
"test": "jest --runInBand --watch",
"exercise1": "jest 1.map-filter-find.test --watch",
"exercise2": "jest 2.reduce.test --watch",
"exercise3": "jest 3.data-mining.test --watch",
"exercise4": "jest 4.student-exercises.test --watch"
},
"jest": {
"reporters": [
"default",
[
"<rootDir>/customReporter.js",
{
"banana": "yes",
"pineapple": "no"
}
]
],
"testSequencer": "./customSequencer.js"
},
"author": "Codaisseur",
"license": "ISC",
"devDependencies": {
"jest": "^24.7.1"
},
"dependencies": {
"axios": "^0.19.0",
"gitconfig": "^2.0.8"
}
}