forked from PlatziMaster/challenge-node-01
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
39 lines (39 loc) · 980 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
33
34
35
36
37
38
39
{
"name": "project-node-01",
"version": "1.0.0",
"description": "Reto Semana 2: NodeJS / GithubUser",
"main": "index.js",
"scripts": {
"lint": "eslint src/",
"start": "node src/index.js"
},
"keywords": [
"javascript",
"node",
"puppeteer"
],
"author": "Oscar Barajas <[email protected]>",
"license": "MIT",
"dependencies": {
"dotenv": "^8.2.0",
"node-fetch": "^2.6.0",
"prompt": "^1.0.0",
"puppeteer": "^2.1.1",
"puppeteer-core": "^2.1.1"
},
"devDependencies": {
"babel-eslint": "^10.0.3",
"eslint": "^6.8.0",
"eslint-config-airbnb-base": "^14.0.0",
"eslint-config-node": "^4.0.0",
"eslint-plugin-import": "^2.20.1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/PlatziMaster/challenge-node-01.git"
},
"bugs": {
"url": "https://github.com/PlatziMaster/challenge-node-01/issues"
},
"homepage": "https://github.com/PlatziMaster/challenge-node-01#readme"
}