-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
87 lines (87 loc) · 2.53 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
76
77
78
79
80
81
82
83
84
85
86
87
{
"name": "yuque-hexo-lyrics",
"version": "1.2.2",
"description": "A downloader for articles from yuque",
"author": "wztlink1013",
"license": "MIT",
"main": "src/bin/yuque-hexo-lyrics.js",
"jsnext:main": "src/bin/yuque-hexo-lyrics.js",
"module": "src/bin/yuque-hexo-lyrics.js",
"sideEffects": true,
"bin": {
"yuque-hexo-lyrics": "src/bin/yuque-hexo-lyrics.js"
},
"keywords": [
"yuque",
"hexo"
],
"scripts": {
"test": "cross-env NODE_ENV=test nyc --reporter=lcov --reporter=text mocha",
"lint": "eslint src config test",
"lint:prettier": "prettier --check .",
"build:self": "rollup -c config/rollup.config.js",
"build:esm": "rollup -c config/rollup.config.esm.js",
"build:aio": "rollup -c config/rollup.config.aio.js",
"build": "npm run build:self && npm run build:esm && npm run build:aio",
"cz": "npx ./node_modules/cz-customizable",
"commit": "git add . && npm run cz",
"changelog": "conventional-changelog -p cz-config.js -i CHANGELOG.md -s",
"test:puppeteer": "node test/browser/puppeteer.js",
"prepare": "husky install"
},
"config": {
"commitizen": {
"path": "node_modules/cz-customizable"
}
},
"bugs": {
"url": "https://github.com/wztlink1013/yuque-hexo-lyrics/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/wztlink1013/yuque-hexo-lyrics.git"
},
"files": [
"src",
"LICENSE"
],
"homepage": "https://github.com/wztlink1013/yuque-hexo-lyrics#readme",
"dependencies": {
"chalk": "^2.4.1",
"common-bin": "^2.7.3",
"debug": "^3.1.0",
"depd": "^2.0.0",
"ejs": "^2.6.1",
"extend2": "^1.0.0",
"filenamify": "^4.1.0",
"hexo-front-matter": "^0.2.3",
"html-entities": "^1.2.1",
"jsdom": "^24.0.0",
"lodash": "^4.17.10",
"mkdirp": "^1.0.0",
"moment": "^2.22.2",
"queue": "^4.5.0",
"rimraf": "^2.6.2",
"update-check": "^1.5.3",
"urllib": "^2.33.1"
},
"devDependencies": {
"@commitlint/cli": "^17.4.4",
"commitizen": "^4.3.0",
"commitlint": "^17.4.4",
"commitlint-config-cz": "^0.13.3",
"commitlint-config-git-commit-emoji": "^1.0.0",
"conventional-changelog": "^3.1.25",
"conventional-changelog-cli": "^2.2.2",
"cz-conventional-changelog": "^3.3.0",
"cz-customizable": "^7.0.0",
"eslint": "^8.7.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"husky": "^7.0.0",
"lint-staged": "^12.3.1",
"nyc": "^15.1.0",
"prettier": "2.5.1",
"pretty-quick": "^3.1.3"
}
}