-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
37 lines (37 loc) · 1.05 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
{
"name": "eslint-config-bandlab",
"version": "1.0.0",
"description": "BandLab's ESLint config, following our styleguide",
"private": true,
"scripts": {
"format": "prettier . -w",
"preinstall": "npm run install:config:base && npm run install:config:angularjs",
"install:config:base": "cd packages/eslint-config-bandlab-base && npm prune && npm install",
"install:config:angularjs": "cd packages/eslint-config-bandlab-angularjs && npm prune && npm install"
},
"repository": {
"type": "git",
"url": "https://github.com/bandlab/eslint-config-bandlab"
},
"keywords": [
"eslint",
"eslintconfig",
"config",
"bandlab",
"javascript",
"styleguide"
],
"author": "Laurent Le Graverend (https://twitter.com/@yapfut)",
"license": "MIT",
"bugs": {
"url": "https://github.com/bandlab/eslint-config-bandlab/issues"
},
"homepage": "https://github.com/bandlab/eslint-config-bandlab",
"devDependencies": {
"prettier": "^3.0.3"
},
"prettier": {
"quoteProps": "consistent",
"singleQuote": true
}
}