-
Notifications
You must be signed in to change notification settings - Fork 16
/
package.json
51 lines (51 loc) · 1.39 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
45
46
47
48
49
50
51
{
"name": "nodejs-tutorials",
"description": "Future Studio tutorials focussed on Node.js",
"version": "1.0.0",
"author": "Future Studio <info@futurestud.io>",
"bugs": {
"url": "https://github.com/futurestudio/nodejs-tutorials/issues"
},
"contributors": [
{
"name": "Marcus Poehls",
"email": "marcus@futurestud.io"
}
],
"engines": {
"node": ">=8.0.0"
},
"dependencies": {
"@hapi/hoek": "~7.1.0",
"axios": "~0.19.0",
"deepmerge": "~4.2.2",
"fs-extra": "~8.0.1",
"listr": "~0.14.3",
"lodash": "~4.17.11",
"p-iteration": "~1.1.8",
"progress": "~2.0.3",
"youch": "~2.0.10",
"youch-terminal": "~1.0.0"
},
"devDependencies": {
"@hapi/code": "~5.3.1",
"@hapi/lab": "~19.0.1",
"eslint": "~5.16.0",
"eslint-config-standard": "~12.0.0",
"eslint-plugin-import": "~2.17.3",
"eslint-plugin-node": "~9.1.0",
"eslint-plugin-promise": "~4.1.1",
"eslint-plugin-standard": "~4.0.0"
},
"homepage": "https://github.com/futurestudio/nodejs-tutorials#readme",
"license": "MIT",
"main": "index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/futurestudio/nodejs-tutorials.git"
},
"scripts": {
"lint": "eslint --fix",
"test": "lab --assert @hapi/code --leaks --coverage --lint --reporter console --output stdout --reporter html --output ./coverage/coverage.html"
}
}