-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1015 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
40
41
42
43
44
45
46
47
{
"name": "dotfiles",
"version": "1.0.0",
"description": "Helper modules for dotfiles (from NPM)",
"repository": {
"type": "git",
"url": "git+https://github.com/stianlj/dotfiles.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/stianlj/dotfiles/issues"
},
"homepage": "https://github.com/stianlj/dotfiles#readme",
"devDependencies": {
"eslint": "^7.20.0",
"eslint-plugin-unicorn": "^28.0.0",
"prettier": "^2.2.1"
},
"eslintConfig": {
"extends": "plugin:unicorn/recommended",
"rules": {
"unicorn/prevent-abbreviations": [
"error",
{
"replacements": {
"args": {
"arguments": false
},
"fn": {
"function": false
}
}
}
]
}
},
"prettier": {
"printWidth": 100,
"semi": false,
"singleQuote": true
},
"dependencies": {
"node-html-parser": "^3.1.5",
"shelljs": "^0.8.5"
}
}