-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1.04 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
{
"name": "validate-yaml-schema",
"version": "2.0.0",
"description": "Validate a YAML file against a JSON Schema",
"main": "lib/index.js",
"scripts": {
"build": "webpack --config webpack.config.js",
"start": "npm run build && node lib/index.js",
"test": "echo \"Error: no test specified\" && exit 1",
"tsc": "tsc"
},
"repository": {
"type": "git",
"url": "git+https://github.com/pl-strflt/validate-yaml-schema.git"
},
"keywords": [
"yaml",
"JSON",
"schema",
"validation"
],
"author": "[email protected]",
"license": "ISC",
"bugs": {
"url": "https://github.com/pl-strflt/validate-yaml-schema/issues"
},
"homepage": "https://github.com/pl-strflt/validate-yaml-schema",
"dependencies": {
"@actions/core": "^1.10.0",
"glob": "^7.2.0",
"yaml-language-server": "1.15.0"
},
"devDependencies": {
"@types/node": "^17.0.8",
"ts-loader": "^9.2.6",
"typescript": "^4.5.4",
"umd-compat-loader": "^2.1.2",
"webpack": "^5.97.1",
"webpack-cli": "^4.9.1"
}
}