-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.02 KB
/
package.json
File metadata and controls
40 lines (40 loc) · 1.02 KB
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
{
"name": "workshop-workflow-node",
"version": "1.0.1",
"description": "Treinamento: Workflow para projetos em Node.js.",
"author": "Roberto Achar <robertoachar@gmail.com>",
"license": "CC-BY-NC-SA-4.0",
"homepage": "https://github.com/robertoachar/workshop-workflow-node#readme",
"keywords": [
"workshop",
"workflow",
"node"
],
"main": "src/index.js",
"files": [
"src"
],
"scripts": {
"build": "vuepress build docs",
"lint": "eslint 'docs/**/*.js'",
"start": "vuepress dev docs"
},
"repository": {
"type": "git",
"url": "https://github.com/robertoachar/workshop-workflow-node.git"
},
"bugs": {
"url": "https://github.com/robertoachar/workshop-workflow-node/issues"
},
"dependencies": {},
"devDependencies": {
"eslint": "6.4.0",
"eslint-config-airbnb-base": "14.0.0",
"eslint-config-prettier": "6.3.0",
"eslint-plugin-import": "2.18.2",
"eslint-plugin-prettier": "3.1.0",
"prettier": "1.18.2",
"vuepress": "1.0.4"
},
"private": true
}