-
Notifications
You must be signed in to change notification settings - Fork 26
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.05 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.05 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
47
48
49
50
51
52
{
"name": "yaml-loader",
"version": "0.9.0",
"license": "MIT",
"description": "YAML loader for Webpack",
"keywords": [
"yaml",
"webpack",
"loader",
"json"
],
"contributors": [
"Andrey Okonetchnikov <andrey@okonet.ru>",
"Eemeli Aro <eemeli@gmail.com>"
],
"homepage": "https://github.com/eemeli/yaml-loader",
"bugs": {
"url": "https://github.com/eemeli/yaml-loader/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/eemeli/yaml-loader.git"
},
"main": "index.js",
"files": [
"index.js"
],
"scripts": {
"prettier": "prettier --write .",
"test": "vitest run --coverage"
},
"prettier": {
"semi": false,
"singleQuote": true,
"trailingComma": "none"
},
"dependencies": {
"javascript-stringify": "^2.0.1",
"yaml": "^2.0.0"
},
"devDependencies": {
"@vitest/coverage-v8": "^4.0.16",
"memfs": "^4.51.1",
"prettier": "^3.7.4",
"unionfs": "^4.4.0",
"vitest": "^4.0.16",
"webpack": "^5.75.0"
},
"engines": {
"node": ">= 20"
}
}