-
-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
64 lines (64 loc) · 1.71 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
57
58
59
60
61
62
63
64
{
"name": "yaml-unist-parser",
"version": "2.0.1",
"description": "A YAML parser that produces output compatible with unist",
"keywords": [
"unist",
"yaml"
],
"type": "module",
"types": "lib/index.d.ts",
"exports": {
".": "./lib/index.js",
"./*": "./*"
},
"repository": "prettier/yaml-unist-parser",
"homepage": "https://github.com/prettier/yaml-unist-parser#readme",
"author": {
"name": "Ika",
"email": "[email protected]",
"url": "https://github.com/ikatyang"
},
"license": "MIT",
"scripts": {
"prepublish": "patch-package && yarn run build",
"lint": "run-p lint:*",
"lint:eslint": "eslint --ext=.ts,.cjs,.mjs .",
"lint:prettier": "prettier --check src",
"fix": "run-s fix:*",
"fix:eslint": "yarn lint:eslint --fix",
"fix:prettier": "yarn lint:prettier --write",
"test": "node --experimental-vm-modules node_modules/jest/bin/jest.js",
"prebuild": "rm -rf ./lib",
"build": "tsc -p ./tsconfig.build.json",
"release": "yarn build && standard-version"
},
"dependencies": {
"lines-and-columns": "^2.0.3",
"tslib": "^2.4.1",
"yaml": "^1.10.0"
},
"devDependencies": {
"@types/jest": "29.2.5",
"@types/node": "18.11.18",
"@typescript-eslint/eslint-plugin": "5.48.0",
"@typescript-eslint/parser": "5.48.0",
"eslint": "8.31.0",
"eslint-config-prettier": "8.6.0",
"eslint-plugin-import": "2.26.0",
"jest": "29.3.1",
"jest-snapshot-serializer-raw": "1.2.0",
"npm-run-all": "4.1.5",
"patch-package": "6.5.1",
"prettier": "2.8.2",
"standard-version": "9.5.0",
"ts-jest": "29.0.3",
"typescript": "4.9.4"
},
"engines": {
"node": ">= 14"
},
"files": [
"/lib/**/*"
]
}