-
-
Notifications
You must be signed in to change notification settings - Fork 41
/
Copy pathpackage.json
56 lines (56 loc) · 1.41 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
{
"name": "@putout/processor-yaml",
"version": "8.1.0",
"type": "module",
"author": "coderaiser <[email protected]> (https://github.com/coderaiser)",
"description": "🐊Putout processor adds ability to parse yaml files and lint js snippets",
"homepage": "https://github.com/coderaiser/putout/tree/master/packages/processor-yaml#readme",
"main": "lib/yaml.js",
"release": false,
"tag": false,
"changelog": false,
"repository": {
"type": "git",
"url": "git+https://github.com/coderaiser/putout.git"
},
"scripts": {
"test": "madrun test",
"watch:test": "madrun watch:test",
"lint": "madrun lint",
"fresh:lint": "madrun fresh:lint",
"lint:fresh": "madrun lint:fresh",
"fix:lint": "madrun fix:lint",
"coverage": "madrun coverage",
"report": "madrun report"
},
"dependencies": {
"@putout/operator-json": "^2.0.0",
"just-kebab-case": "^4.0.2",
"try-catch": "^3.0.0",
"yaml": "^2.2.2"
},
"keywords": [
"putout",
"putout-processor",
"yaml"
],
"devDependencies": {
"@putout/test": "^11.0.0",
"c8": "^10.0.0",
"eslint": "^9.0.0",
"eslint-plugin-n": "^17.0.0",
"eslint-plugin-putout": "^23.0.0",
"lerna": "^6.0.1",
"madrun": "^10.0.0",
"montag": "^1.2.1",
"nodemon": "^3.0.1",
"putout": "*"
},
"license": "MIT",
"engines": {
"node": ">=18"
},
"publishConfig": {
"access": "public"
}
}