-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
50 lines (50 loc) · 1.09 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
{
"name": "@hulu/eslint-brightscript",
"version": "0.1.0",
"description": "Lint your Brightscript code with brs and eslint!",
"main": "dist/index.js",
"author": "Hulu",
"license": "Apache-2.0",
"private": true,
"workspaces": [
"packages/*"
],
"scripts": {
"build": "lerna run compile",
"clean": "lerna run clean",
"test": "lerna run test",
"posttest": "npm run format",
"format:write": "prettier --loglevel warn --write \"**/*.{js,ts}\"",
"format": "prettier --loglevel warn --check \"**/*.{js,ts}\"",
"prepare": "husky install"
},
"dependencies": {
"lerna": "4"
},
"devDependencies": {
"husky": ">=6",
"lint-staged": ">=10",
"prettier": ">=2",
"rimraf": "^3.0.2"
},
"lint-staged": {
"*.{js,ts}": "prettier --write"
},
"prettier": {
"trailingComma": "es5",
"tabWidth": 4,
"printWidth": 100,
"overrides": [
{
"files": [
"package.json",
"**/package.json",
"**/jest.config.js"
],
"options": {
"tabWidth": 2
}
}
]
}
}