forked from eemeli/yaml-types
-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
57 lines (57 loc) · 1.22 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
{
"name": "yaml-types",
"version": "0.3.0",
"license": "ISC",
"author": "Eemeli Aro <[email protected]>",
"repository": "github:eemeli/yaml-types",
"description": "Useful JavaScript types for YAML",
"keywords": [
"YAML",
"schema",
"tags"
],
"homepage": "https://eemeli.org/yaml/",
"files": [
"dist/",
"!dist/*.map",
"!dist/*.test.*"
],
"type": "commonjs",
"exports": {
".": "./dist/index.js",
"./package.json": "./package.json"
},
"scripts": {
"build": "tsc",
"clean": "git clean -fdxe node_modules",
"prettier": "prettier --write .",
"prepublishOnly": "npm run clean && npm run test",
"prestart": "tsc",
"start": "node -i -e 'YAML=require(\"yaml\");YT=require(\"./dist/index.js\")'",
"pretest": "tsc",
"test": "tap"
},
"prettier": {
"arrowParens": "avoid",
"semi": false,
"singleQuote": true,
"trailingComma": "none"
},
"tap": {
"test-regex": "\\.test\\.js"
},
"engines": {
"node": ">= 16",
"npm": ">= 7"
},
"devDependencies": {
"@types/tap": "^15.0.8",
"prettier": "^2.8.7",
"tap": "^16.3.4",
"typescript": "^5.0.4",
"yaml": "^2.3.0"
},
"peerDependencies": {
"yaml": "^2.3.0"
}
}