forked from WellsSA/jsexpert-challenge03-terminal
-
Notifications
You must be signed in to change notification settings - Fork 22
/
package.json
42 lines (42 loc) · 1.22 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
34
35
36
37
38
39
40
41
42
{
"name": "challenge03-terminal",
"author": "Wellington S. Almeida (WellsSA)",
"version": "1.0.0",
"description": "This is a code challenge where you are supposed to understand a bit more about the Javascript lifecycle and ECMAScript Modules implementing a functional customized Command Line Interface (CLI) with beautiful terminal outputs, understanding a bit more about internationalization on the process.",
"license": "MIT",
"main": "src/index.js",
"type": "module",
"keywords": [
"Tests",
"Mocha",
"Chai",
"Javascript",
"Code",
"Lifecycle",
"NodeJS",
"unit",
"Chalk",
"CLI",
"Chalk-Table"
],
"scripts": {
"start": "node --experimental-json-modules --experimental-top-level-await src/index.js",
"server": "npx json-server --watch src/server.json --port 3000",
"dev": "nodemon --exec npm start",
"test": "npx mocha -w --parallel test/**/*.test.js"
},
"dependencies": {
"axios": "^0.24.0",
"chalk": "^5.0.0",
"chalk-table": "^1.0.2",
"draftlog": "^1.0.13"
},
"devDependencies": {
"chai": "^4.3.4",
"chai-as-promised": "^7.1.1",
"mocha": "^9.1.3",
"nodemon": "^2.0.15",
"sinon": "^12.0.1",
"supertest": "^6.1.6"
}
}