-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.59 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.59 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
53
54
55
56
57
58
{
"name": "yaml-doc-query",
"version": "0.2.1",
"description": "lookup values along with their position in yaml documents",
"main": "dist/yamlDocQuery.cjs",
"module": "dist/yamlDocQuery.mjs",
"types": "dist/yamlDocQuery.d.ts",
"exports": {
".": {
"import": "./dist/yamlDocQuery.mjs",
"require": "./dist/yamlDocQuery.cjs",
"types": "./dist/yamlDocQuery.d.ts"
}
},
"scripts": {
"prepare": "npm run test && npm run build",
"pretest": "markdown-to-test ",
"test": "jest",
"prebuild": "rm -rf dist && tsc",
"build": "npm run build:esm && npm run build:cjs",
"build:esm": "esbuild src/yamlDocQuery.ts --outfile=dist/yamlDocQuery.mjs --format=esm --target=es2020",
"build:cjs": "esbuild src/yamlDocQuery.ts --outfile=dist/yamlDocQuery.cjs --format=cjs --target=es2016"
},
"jest": {
"preset": "ts-jest"
},
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/Xiphe/yaml-doc-query.git"
},
"keywords": [
"yaml",
"sourcemap",
"mapped yaml",
"yaml position",
"yaml location",
"yaml document"
],
"author": "Hannes Diercks <node@xiphe.net> (https://xiphe.net/)",
"license": "MIT",
"bugs": {
"url": "https://github.com/Xiphe/yaml-doc-query/issues"
},
"homepage": "https://github.com/Xiphe/yaml-doc-query#readme",
"devDependencies": {
"@types/jest": "28.1.8",
"esbuild": "0.15.5",
"jest": "28.1.3",
"markdown-to-test": "0.3.0",
"prettier": "2.7.1",
"ts-jest": "28.0.8",
"typescript": "4.8.2",
"yaml": "2.1.1"
},
"peerDependencies": {
"yaml": "^2"
}
}