-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
58 lines (58 loc) · 1.41 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
{
"name": "hexo-unique-post-path",
"version": "1.0.4",
"description": "This plug-in helps Hexo create new posts with unique auto-generated paths.",
"main": "lib/index.js",
"scripts": {
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"test": "mocha test/index.js",
"test:cov": "nyc npm run test",
"test:loop": "while npm test --silent; do :; done"
},
"dependencies": {
"chalk": "^3.0.0",
"hexo-fs": "^2.0.0",
"id-generators": "^1.0.0",
"tildify": "^2.0.0",
"transliteration": "^2.1.7"
},
"devDependencies": {
"chai": "^4.2.0",
"eslint": "^6.7.2",
"eslint-config-hexo": "^4.0.0",
"hexo": "^4.0.0",
"hexo-unique-post-path": "file:.",
"mocha": "^6.2.1",
"moment": "^2.24.0",
"nyc": "^14.1.1",
"sinon": "^7.5.0"
},
"keywords": [
"hexo",
"blog",
"cuid",
"id",
"generate",
"plugin",
"extension"
],
"files": [
"lib/",
"LICENSE",
"README.md"
],
"engines": {
"node": ">=8.6.0"
},
"author": "dailyrandomphoto <[email protected]> (https://www.dailyrandomphoto.com/)",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/dailyrandomphoto/hexo-unique-post-path.git"
},
"bugs": {
"url": "https://github.com/dailyrandomphoto/hexo-unique-post-path/issues"
},
"homepage": "https://github.com/dailyrandomphoto/hexo-unique-post-path#readme"
}