-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
42 lines (42 loc) · 974 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
{
"name": "hexo-renderer-dartsass",
"version": "1.1.0",
"description": "Sass renderer plugin for Hexo (use dartsass instead of libsass)",
"main": "dist/",
"files": [
"dist/"
],
"repository": {
"type": "git",
"url": "git+https://github.com/KentarouTakeda/hexo-renderer-dartsass.git"
},
"scripts": {
"build": "tsc",
"prepublishOnly": "npm run build",
"test": "jasmine-ts",
"watch": "chokidar 'src/**/*.ts' 'spec/**/*.ts' -c 'npm test'"
},
"keywords": [
"hexo",
"sass",
"scss",
"renderer"
],
"author": "KentarouTakeda",
"license": "MIT",
"dependencies": {
"sass": "^1.37.5"
},
"devDependencies": {
"@types/hexo": "^3.8.7",
"@types/jasmine": "^3.8.2",
"@types/sass": "^1.16.1",
"chokidar-cli": "^3.0.0",
"hexo": "^5.4.0",
"jasmine": "^3.8.0",
"jasmine-console-reporter": "^3.1.0",
"jasmine-ts": "^0.4.0",
"ts-node": "^10.2.0",
"typescript": "^5.6.3"
}
}