-
Notifications
You must be signed in to change notification settings - Fork 14
/
package.json
43 lines (43 loc) · 1.03 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
{
"name": "hexo-excerpt",
"version": "1.3.1",
"description": "Automatic excerpt generator for Hexo!",
"main": "index",
"scripts": {
"eslint": "eslint .",
"test": "mocha tests/*.js",
"test-cover": "nyc mocha tests/*.js",
"test-cover-report": "nyc report --reporter=text-lcov | coveralls"
},
"directories": {
"lib": "./lib"
},
"repository": {
"type": "git",
"url": "git+https://github.com/chekun/hexo-excerpt.git"
},
"homepage": "https://chekun.me/post/hexo-excerpt",
"keywords": [
"hexo",
"excerpt"
],
"author": "Kun Che <[email protected]> (https://chekun.me/)",
"license": "MIT",
"dependencies": {
"css-select": "^4.0.0",
"dom-serializer": "^1.3.1",
"domutils": "^2.5.2",
"htmlparser2": "^6.1.0",
"lodash.defaults": "^4.2.0"
},
"devDependencies": {
"chai": "^4.3.4",
"coveralls": "^3.1.0",
"eslint": "^7.24.0",
"eslint-config-hexo": "^4.1.0",
"hexo": "^5.4.1",
"mocha": "^10.0.0",
"nyc": "^15.1.0",
"json-schema": "^0.4.0"
}
}