-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 2.14 KB
/
package.json
File metadata and controls
64 lines (64 loc) · 2.14 KB
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
54
55
56
57
58
59
60
61
62
63
64
{
"name": "@premierstacks/prettier-stack",
"description": "premierstacks prettier stack",
"keywords": [
"tomchochola",
"tomaschochola",
"Tomas Chochola",
"Tomáš Chochola",
"premierstacks",
"prettier-stack"
],
"homepage": "https://github.com/premierstacks/prettier-stack",
"bugs": {
"email": "chocholatom1997@gmail.com",
"url": "https://github.com/premierstacks/prettier-stack/issues"
},
"license": "CC-BY-ND-4.0",
"author": {
"email": "chocholatom1997@gmail.com",
"name": "Tomáš Chochola",
"url": "https://github.com/tomchochola"
},
"contributors": [
{
"email": "chocholatom1997@gmail.com",
"name": "Tomáš Chochola",
"url": "https://github.com/tomchochola"
}
],
"funding": {
"type": "github",
"url": "https://github.com/sponsors/tomchochola"
},
"repository": "github:premierstacks/prettier-stack",
"dependencies": {
"@prettier/plugin-pug": "^3.4.2",
"@prettier/plugin-ruby": "^4.0.4",
"@prettier/plugin-xml": "^3.4.2",
"prettier": "^3.6.2"
},
"devDependencies": {
"@premierstacks/eslint-stack": "github:premierstacks/eslint-stack#main"
},
"type": "module",
"sideEffects": false,
"main": "./src/index.js",
"scripts": {
"check": "npm run lint && npm run security",
"clean": "npm run clean:npm",
"clean:npm": "git clean -xfd ./node_modules ./package-lock.json",
"commit": "npm run fix && npm run check && npm run local",
"fix": "npm run fix:eslint && npm run fix:prettier",
"fix:eslint": "eslint --fix .",
"fix:prettier": "prettier -w .",
"lint": "npm run lint:eslint && npm run lint:prettier",
"lint:eslint": "eslint .",
"lint:prettier": "prettier -c .",
"local": "npm run npm:install",
"npm:audit": "npm audit --audit-level info --include prod --include dev --include peer --include optional",
"npm:install": "npm install --install-links --include prod --include dev --include peer --include optional --ignore-scripts",
"npm:update": "npm update --install-links --include prod --include dev --include peer --include optional --ignore-scripts",
"security": "npm run npm:audit"
}
}