-
-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpackage.json
47 lines (47 loc) · 964 Bytes
/
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
{
"name": "hexo-renderer-less",
"version": "4.0.0",
"description": "Less renderer plugin for Hexo",
"main": "index.js",
"directories": {
"lib": "./lib"
},
"files": [
"index.js",
"lib/"
],
"scripts": {
"eslint": "eslint . --fix",
"test": "mocha test/index.js",
"test-cov": "nyc --reporter=lcovonly npm run test"
},
"repository": "hexojs/hexo-renderer-less",
"bugs": {
"url": "https://github.com/hexojs/hexo-renderer-less/issues"
},
"keywords": [
"hexo",
"less",
"stylesheet",
"css",
"style",
"renderer"
],
"author": "Tommy Chen <[email protected]> (http://zespia.tw)",
"license": "MIT",
"dependencies": {
"less": "^4.1.2",
"micromatch": "^4.0.4"
},
"devDependencies": {
"chai": "^4.3.4",
"eslint": "^9.0.0",
"eslint-config-hexo": "^5.0.0",
"hexo": "^7.0.0",
"mocha": "^10.0.0",
"nyc": "^15.0.0"
},
"engines": {
"node": ">=12"
}
}