-
Notifications
You must be signed in to change notification settings - Fork 12
/
package.json
30 lines (30 loc) · 843 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
{
"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",
"scripts": {
"start": "node src/index.js",
"test": "npx mocha --parallel test/*.test.js",
"test:dev": "npx mocha -w test/*.test.js",
"test:cov": "npx nyc npx mocha --parallel test/*.test.js"
},
"keywords": [
"RegExp",
"Regular Expressions",
"Facade",
"Fluent API",
"Challenge",
"Code Challenge"
],
"license": "MIT",
"devDependencies": {
"chai": "^4.2.0",
"mocha": "^8.2.1",
"nyc": "^15.1.0"
},
"dependencies": {
"safe-regex": "^2.1.1"
}
}