-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.18 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.18 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
{
"private": true,
"version": "1.0.0",
"name": "codeclimate-editorconfig",
"description": "Static analysis tool that validates your project files with EditorConfig",
"author": "Ahmad Nassri <ahmad@ahmadnassri.com> (https://www.ahmadnassri.com/)",
"homepage": "https://github.com/ahmadnassri/codeclimate-editorconfig",
"repository": {
"type": "git",
"url": "https://github.com/ahmadnassri/codeclimate-editorconfig.git"
},
"license": "ISC",
"main": "index.js",
"bin": {
"codeclimate-editorconfig": "bin.js"
},
"keywords": [
"codeclimate",
"editorconfig"
],
"engines": {
"node": ">=9"
},
"files": [
"bin.js",
"index.js"
],
"bugs": {
"url": "https://github.com/ahmadnassri/codeclimate-editorconfig/issues"
},
"scripts": {
"pretest": "npm run test:codeclimate",
"test": "npm run test:tap",
"test:codeclimate": ".scripts/codeclimate analyze",
"test:tap": "tap test --100 --coverage-report=lcov --no-browser",
"coverage": "opener coverage/lcov-report/index.html"
},
"devDependencies": {
"ajv": "^6.1.1",
"tap": "^11.1.0"
},
"dependencies": {
"fast-glob": "^2.0.4",
"lintspaces": "^0.10.2"
}
}