-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
73 lines (73 loc) · 2.61 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
{
"name": "@mafalda-sfu/shared-config",
"version": "0.0.0",
"description": "Standard shared config for Mafalda SFU",
"license": "ISC",
"homepage": "https://github.com/Mafalda-SFU/shared-config#readme",
"author": {
"name": "Jesús Leganés-Combarro 'piranna'",
"url": "https://piranna.github.io/"
},
"keywords": [
"Mafalda",
"SFU",
"shared-config"
],
"bugs": "https://github.com/Mafalda-SFU/shared-config/issues",
"type": "module",
"exports": "./lib/index.js",
"bin": {
"shared-config": "bin/shared-config.js"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/Mafalda-SFU/shared-config.git"
},
"scripts": {
"build": "run-s build:*",
"build:shared-config": "shared-config build",
"docs": "run-s docs:*",
"docs:madge": "madge . --image madge.svg",
"docs:readme": "cp README.md madge.svg docs/",
"lint": "run-s 'lint:!(fix)'",
"lint:code": "run-s lint:code:*",
"lint:code:circular-dependencies": "madge . --circular",
"lint:code:duplicated-code": "jscpd .",
"lint:code:static-analysis": "eslint .",
"lint:docs": "run-s lint:docs:*",
"lint:docs:readme": "standard-readme",
"lint:docs:spell-checker": "cspell",
"lint:fix": "run-s lint:fix:*",
"lint:fix:code": "run-s lint:fix:code:*",
"lint:fix:code:static-analysis": "npm run lint:code:static-analysis -- --fix",
"lint:text": "textlint .",
"predocs": "mkdir -p docs/",
"prepare": "run-s prepare:*",
"prepare:build": "npm run build",
"prepare:fetch-gitignore": "curl https://raw.githubusercontent.com/github/gitignore/main/Node.gitignore --output .gitignore && echo bin/ >> .gitignore && echo lib/ >> .gitignore",
"prepare:generate-cspell-words": "cspell --config .config/.cspell.json --unique --words-only \"**\" | sort --ignore-case > .config/.cspell.txt",
"prepare:git-hooks": "husky install",
"prepare:install-config": "chmod +x bin/* && bin/shared-config.js",
"pretest": "npm-run-all pretest:*",
"pretest:lint": "npm run lint",
"pretest:madge": "madge . --circular",
"prepare:install-git-hooks": "husky install",
"test": "node --experimental-test-coverage --test"
},
"dependencies": {
"standard-readme": "^2.0.4"
},
"devDependencies": {
"@mafalda-sfu/eslint-config": "^0.3.0",
"cspell": "^6.31.1",
"eslint": "^8.44.0",
"husky": "^8.0.3",
"jscpd": "^3.5.9",
"jsdoc-to-markdown": "^8.0.0",
"madge": "^6.1.0",
"npm-run-all": "^4.1.5",
"standard-shared-config": "^4.1.0",
"textlint": "^13.3.3",
"textlint-rule-editorconfig": "Mafalda-SFU/textlint-rule-editorconfig"
}
}