-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
75 lines (75 loc) · 1.83 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
72
73
74
75
{
"name": "dev-blog-directory-save-json-cli",
"version": "0.3.1",
"description": "A CLI for saves the JSON format blog list to documents/*.yml.",
"main": "index.js",
"bin": {
"save-blog-json": "index.js"
},
"scripts": {
"demo": "save-blog-json ./test.json && save-blog-json ./test-arr.json",
"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": "npx unlink-self 2>&1 | echo unlink-self"
},
"dependencies": {
"dev-blog-directory-save": "^0.4.6",
"fs-extra": "^9.0.1",
"minimist": "^1.2.0"
},
"devDependencies": {
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"dev-blog-directory-save-json-cli": "file:.",
"mocha": "^8.1.1",
"nyc": "^15.1.0",
"prettier": "latest",
"unlink-self": "latest",
"xo": "^0.32.1"
},
"keywords": [
"save",
"json",
"yaml",
"blog",
"cli"
],
"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/dev-blog-directory-save-json-cli.git"
},
"bugs": {
"url": "https://github.com/dailyrandomphoto/dev-blog-directory-save-json-cli/issues"
},
"homepage": "https://github.com/dailyrandomphoto/dev-blog-directory-save-json-cli#readme",
"xo": {
"space": 2,
"prettier": true,
"rules": {
"promise/prefer-await-to-then": 0,
"capitalized-comments": 0
},
"overrides": [
{
"files": "test.js",
"envs": [
"node",
"mocha"
]
}
]
}
}