-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 1001 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
{
"name": "@liferaycloud/interview-libs",
"version": "1.0.3",
"description": "Code to be shared with candidates interviewing for Liferay Cloud.",
"main": "dist/index.js",
"author": "mairatma",
"repository": {
"type": "git",
"url": "https://github.com/LiferayCloud/interview-libs"
},
"license": "ISC",
"scripts": {
"build": "rm -rf dist/ && tsc",
"format": "prettier",
"lint": "eslint --fix",
"prepublish": "npm run build"
},
"devDependencies": {
"@types/node": "^14.14.31",
"@typescript-eslint/eslint-plugin": "^4.16.1",
"@typescript-eslint/parser": "^4.16.1",
"eslint": "^7.21.0",
"eslint-config-prettier": "^8.1.0",
"eslint-plugin-prettier": "^3.3.1",
"husky": "=4",
"lint-staged": ">=10",
"prettier": "^2.2.1",
"typescript": "^4.2.2"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.ts": [
"eslint --cache --fix",
"prettier --write"
]
}
}