-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathpackage.json
77 lines (77 loc) · 1.72 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
74
75
76
77
{
"name": "lintspaces",
"version": "0.10.2",
"description": "Library for checking spaces in files",
"engines": {
"node": ">=14"
},
"repository": {
"type": "git",
"url": "https://github.com/schorfES/node-lintspaces.git"
},
"main": "src/index.js",
"scripts": {
"docs": "concat -o README.md ./docs/intro.md ./docs/installation.md ./docs/usage.md ./docs/options.md ./docs/functions.md ./docs/contribution.md ./docs/license.md",
"test": "jest ./src --verbose --coverage",
"lint": "eslint . --ext .js",
"release": "HUSKY=0 release-it",
"prepare": "husky install"
},
"keywords": [
"validation",
"lint",
"spaces",
"trailingspaces",
"indent",
"indentation",
"newlines",
"eof",
"eol"
],
"author": {
"name": "Norman Rusch"
},
"contributors": [
{
"name": "Norman Rusch",
"url": "https://github.com/schorfES"
},
{
"name": "Christopher Knötschke",
"url": "https://github.com/ck86"
},
{
"name": "Will Anderson",
"url": "https://github.com/itsananderson"
},
{
"name": "Chandler Kent",
"url": "https://github.com/chandlerkent"
},
{
"name": "Casey Crabb",
"url": "https://github.com/crabbkw"
},
{
"name": "David Pagini",
"url": "https://github.com/dpagini"
}
],
"license": "MIT",
"dependencies": {
"deep-extend": "^0.6.0",
"editorconfig": "^1.0.1",
"minimist": "^1.2.6",
"rc": "^1.2.8"
},
"devDependencies": {
"concat": "^1.0.3",
"eslint": "^8.3.0",
"eslint-plugin-jest": "^27.0.4",
"husky": "^8.0.1",
"jest": "^29.1.1",
"lint-staged": "^13.0.3",
"prettier": "^2.2.1",
"release-it": "^15.0.0"
}
}