-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
40 lines (40 loc) · 961 Bytes
/
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
{
"name": "yaml-transmute",
"version": "0.0.7",
"description": "YAML parser that lets you write back the YAML file later without loosing the file structure (comments, field order, etc..)",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"type": "module",
"files": [
"/dist"
],
"scripts": {
"test": "vitest run"
},
"author": "Costin Sin",
"license": "ISC",
"dependencies": {
"detect-indent": "^7.0.1",
"yaml": "^2.3.4"
},
"devDependencies": {
"@types/lodash": "^4.14.202",
"@types/node": "^20.11.6",
"lodash": "^4.17.21",
"typescript": "^5.3.3",
"vitest": "^1.2.2"
},
"repository": "costinsin/yaml-transmute",
"keywords": [
"yaml",
"comment",
"key",
"order",
"preserve",
"transmute"
],
"prettier": {
"tabWidth": 4,
"printWidth": 100
}
}