-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
32 lines (32 loc) · 836 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
31
32
{
"name": "nodejs-8-the-right-way",
"version": "1.0.0",
"description": "Exercises to continue learning Node.js",
"main": "index.js",
"scripts": {
"test": "jest --config test/jest.conf.js",
"test:coverage": "jest --config test/jest.conf.js --coverage",
"lint": "eslint src/**"
},
"keywords": [
"Nodejs"
],
"author": "Andrea Zucchini <[email protected]>",
"license": "MIT",
"dependencies": {
"cheerio": "1.0.0-rc.2",
"minimist": "^1.2.0",
"node-dir": "^0.1.17",
"zeromq": "4.6.0"
},
"devDependencies": {
"eslint": "5.3.0",
"eslint-config-standard": "11.0.0",
"eslint-plugin-import": "2.14.0",
"eslint-plugin-jest": "21.21.0",
"eslint-plugin-node": "7.0.1",
"eslint-plugin-promise": "3.8.0",
"eslint-plugin-standard": "3.1.0",
"jest": "23.5.0"
}
}