-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
52 lines (52 loc) · 1.18 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
{
"name": "prettier-yaml",
"version": "0.1.2",
"description": "",
"bin": "lib/index.js",
"scripts": {
"build": "rimraf lib && tsc",
"watch": "rimraf lib && tsc --watch",
"format": "prettier --write src/*.ts",
"test": "jest",
"release": "release-it"
},
"author": {
"name": "Sebastian Werner",
"email": "[email protected]",
"url": "http://sebastian-software.de/werner"
},
"repository": {
"type": "git",
"url": "https://github.com/sebastian-software/prettier-yaml.git"
},
"jest": {
"testEnvironment": "node",
"testPathIgnorePatterns": [
"/node_modules/",
"./lib"
]
},
"keywords": [
"yaml",
"prettier"
],
"license": "Apache-2.0",
"dependencies": {
"fast-glob": "^3.2.12",
"prettier": "^2.8.2",
"yaml": "^2.2.1"
},
"devDependencies": {
"@babel/core": "^7.20.12",
"@babel/preset-env": "^7.20.2",
"@babel/preset-typescript": "^7.18.6",
"@jest/globals": "^29.3.1",
"@types/node": "^18.11.18",
"@types/prettier": "^2.7.2",
"babel-jest": "^29.3.1",
"jest": "^29.3.1",
"release-it": "^15.6.0",
"rimraf": "^3.0.2",
"typescript": "^4.9.4"
}
}