-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
100 lines (100 loc) · 2.15 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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
{
"name": "sail-ci",
"displayName": "Sail CI",
"description": "Sail CI support for Visual Studio Code",
"version": "0.1.0",
"publisher": "sailci",
"engines": {
"vscode": "^1.27.0"
},
"preview": true,
"license": "MIT",
"homepage": "https://github.com/sailci/sailci-vscode",
"repository": {
"type": "git",
"url": "https://github.com/sailci/sailci-vscode"
},
"bugs": {
"url": "https://github.com/sailci/sailci-vscode/issues"
},
"galleryBanner": {
"color": "#002b36",
"theme": "dark"
},
"icon": "icons/sailci.png",
"activationEvents": [
"workspaceContains:**/.sail.yml"
],
"categories": [
"Formatters",
"Linters",
"Other",
"Programming Languages"
],
"extensionDependencies": [
"redhat.vscode-yaml"
],
"contributes": {
"yamlValidation": [
{
"fileMatch": "**/.sail.yml",
"url": "https://gist.github.com/sheepsteak/1d16f0c5de0a59f82508f608e956664a/raw/schema.json"
}
]
},
"main": "./src/index.js",
"scripts": {
"integration-test": "node ./node_modules/vscode/bin/test",
"lint": "eslint .",
"postinstall": "node ./node_modules/vscode/bin/install",
"test": "jest --passWithNoTests"
},
"devDependencies": {
"babel-eslint": "^10.0.1",
"eslint": "4",
"eslint-config-airbnb": "^17.1.0",
"eslint-config-prettier": "^3.1.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-jsx-a11y": "^6.1.2",
"eslint-plugin-react": "^7.11.1",
"husky": "^1.1.1",
"jest": "^23.6.0",
"lint-staged": "^7.3.0",
"prettier": "^1.14.3",
"vscode": "^1.1.21"
},
"dependencies": {},
"jest": {
"collectCoverage": true,
"collectCoverageFrom": [
"src/**/*.js"
],
"coverageReporters": [
"text",
"lcov"
],
"coverageThreshold": {
"global": {
"branches": 100,
"functions": 100,
"lines": 100,
"statements": 100
}
},
"roots": [
"<rootDir>/src/"
]
},
"lint-staged": {
"*.js": [
"eslint --fix",
"prettier --write",
"git add"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
}
}