-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.33 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
{
"name": "@sngular/javascript",
"version": "1.0.0",
"description": "Sngular's Javascript style guide",
"private": true,
"type": "commonjs",
"bugs": {
"url": "https://github.com/sngular/javascript.git/-/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/sngular/javascript.git"
},
"scripts": {
"lint": "npm run lint:check",
"lint:check": "eslint .",
"lint:fix": "eslint . --fix",
"format": "npm run format:check",
"format:check": "prettier --check .",
"format:fix": "prettier --write .",
"types": "npm run types:check",
"types:build": "tsc --build --pretty",
"types:check": "tsc --pretty",
"prepare": "husky install",
"prepublishOnly": "npm run types:build",
"release": "changeset publish",
"check": "npm run lint:check && npm run format:check && npm run types:check"
},
"author": {
"name": "SNGULAR"
},
"contributors": [
"Jorge del Casar",
"Javier Sierra",
"Saul Blanco Tejero",
"Alberto Peinado Rubio"
],
"license": "MPL-2.0",
"workspaces": [
"packages/*"
],
"devDependencies": {
"@changesets/cli": "^2.0.0",
"@commitlint/cli": "^17.0.0",
"@commitlint/prompt-cli": "^17.0.0",
"@sngular/commitlint-config": "*",
"@sngular/eslint-config": "*",
"@sngular/lint-staged-config": "*",
"@sngular/prettier-config": "*",
"@sngular/tsconfig": "*",
"husky": "^8.0.0"
}
}