forked from WellsSA/jsexpert-challenge05-regexp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
29 lines (29 loc) · 991 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
{
"name": "challenge05-regexp",
"author": "Wellington S. Almeida (WellsSA)",
"version": "1.0.0",
"description": "This is the official repository of the 5th EW.IT code challenge. Which is a Facade/Fluent API based application to extract useful information from governmental csv files using regexps.",
"main": "index.js",
"type": "module",
"scripts": {
"start": "node src/index.js",
"test": "NODE_OPTIONS=--experimental-vm-modules npx jest --runInBand --watchAll --config ./jest.config.js",
"test:dev": "NODE_OPTIONS=--experimental-vm-modules npx jest --runInBand --watchAll --config ./jest.config.js",
"test:cov": "NODE_OPTIONS=--experimental-vm-modules npx jest --config ./jest.config.js --coverage"
},
"keywords": [
"RegExp",
"Regular Expressions",
"Facade",
"Fluent API",
"Challenge",
"Code Challenge"
],
"license": "MIT",
"devDependencies": {
"jest": "^27.5.1"
},
"dependencies": {
"safe-regex": "^2.1.1"
}
}