forked from thom4parisot/nodebook
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.27 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
43
44
{
"name": "nodebook.chapter-08",
"bin": {
"nodebook.chapter-08": "examples/bin/time-sh.js",
"nodebook.ch08.autocomplete": "examples/autocomplete/intro.js",
"nodebook.ch08.omelette": "examples/autocomplete/omelette.js",
"nodebook.ch08.yargs": "examples/autocomplete/yargs.js",
"nodebook.ch08.commands": "examples/application/random.js",
"nodebook.ch08.commands-dir": "examples/application/random-dir.js"
},
"private": true,
"version": "1.0.0",
"description": "Exemples de code du chapitre 8 du livre \"Node.js\" publié aux éditions Eyrolles.",
"scripts": {
"test": "tape examples/**/*.test.js"
},
"engines": {
"node": "^10.0.0"
},
"author": "Thomas Parisot (https://thom4.net)",
"license": "MIT",
"bugs": {
"url": "https://github.com/thom4parisot/nodebook/issues"
},
"dependencies": {
"ansi-escapes": "^3.2.0",
"chalk": "^2.4.2",
"faker": "^4.1.0",
"get-stdin": "^6.0.0",
"get-stream": "^4.1.0",
"globby": "^8.0.2",
"inquirer": "^6.3.1",
"minimist": "^1.2.0",
"omelette": "^0.4.12",
"ora": "^3.4.0",
"supports-color": "^5.5.0",
"table": "^4.0.3",
"tape": "^4.10.1",
"tape-spawn": "^1.4.2",
"through2": "^3.0.1",
"tz-ids": "^1.0.0",
"update-check": "^1.5.3"
}
}