-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
71 lines (71 loc) · 1.58 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
65
66
67
68
69
70
71
{
"name": "node-read-yaml",
"version": "1.0.1",
"description": "Read and parse a YAML file. A wrapper of js-yaml read file directly.",
"main": "index.js",
"scripts": {
"lint": "prettier --write . && xo",
"lint:fix": "prettier --write . && xo --fix",
"test": "mocha test.js",
"test:cov": "nyc npm run test",
"test:loop": "while npm test --silent; do :; done",
"preinstall": "unlink-self 2>&1 | echo unlink-self"
},
"dependencies": {
"fs-extra": "^8.1.0",
"js-yaml": "^3.13.1"
},
"devDependencies": {
"chai": "^4.2.0",
"mocha": "^8.0.1",
"nyc": "^15.1.0",
"node-read-yaml": "file:.",
"prettier": "latest",
"unlink-self": "latest",
"xo": "latest"
},
"keywords": [
"node",
"read",
"yaml",
"file",
"yml",
"parser",
"serializer"
],
"files": [
"index.js",
"LICENSE",
"README.md"
],
"engines": {
"node": ">=8.6.0"
},
"author": "dailyrandomphoto <dailyrandomphoto@gmail.com> (https://www.dailyrandomphoto.com/)",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/dailyrandomphoto/node-read-yaml.git"
},
"bugs": {
"url": "https://github.com/dailyrandomphoto/node-read-yaml/issues"
},
"homepage": "https://github.com/dailyrandomphoto/node-read-yaml#readme",
"xo": {
"space": 2,
"prettier": true,
"rules": {
"promise/prefer-await-to-then": 0,
"capitalized-comments": 0
},
"overrides": [
{
"files": "test.js",
"envs": [
"node",
"mocha"
]
}
]
}
}