-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
55 lines (55 loc) · 1.1 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
52
53
54
55
{
"author": "Travis Illig",
"dependencies": {
"chokidar": "^3.5.2",
"node-plantuml": "^0.9.0"
},
"description": "PlantUML diagram rendering for inclusion in docs.",
"devDependencies": {
"@babel/eslint-parser": "^7.16.3",
"eslint": "^7.12.1"
},
"eslintConfig": {
"env": {
"es6": true,
"node": true
},
"extends": [
"eslint:recommended"
],
"parser": "@babel/eslint-parser",
"parserOptions": {
"requireConfigFile": false
},
"rules": {
"comma-dangle": 1,
"eqeqeq": 2,
"no-console": 0,
"no-debugger": 1,
"no-extra-parens": 1,
"no-extra-semi": 1,
"no-irregular-whitespace": 0,
"no-undef": 0,
"no-unused-vars": 0,
"semi": 1,
"semi-spacing": 1,
"valid-jsdoc": [
2,
{
"requireReturn": false
}
]
}
},
"license": "MIT",
"main": "index.js",
"name": "mediacenter",
"repository": {
"type": "git",
"url": "https://github.com/tillig/mediacenter.git"
},
"scripts": {
"watch": "node index.js"
},
"version": "1.0.0"
}