forked from JLHwung/hexo-offline
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.17 KB
/
Copy pathpackage.json
File metadata and controls
41 lines (41 loc) · 1.17 KB
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
{
"name": "hexo-offline",
"version": "3.4.56",
"description": "Out-of-the-box hexo offline experience",
"main": "lib/index.js",
"repository": "https://github.com/FJUT/hexo-offline.git",
"author": "J Huang <i@jhuang.me>",
"license": "BSD-2-Clause",
"scripts": {
"clean": "rimraf lib",
"build:template": "babel src/lib/template.js --out-file lib/lib/template.js --presets=minify --no-babelrc --no-comments",
"build:lib": "babel src --out-dir lib",
"build": "npm run build:lib && npm run build:template",
"test": "jest && npm run spellcheck",
"spellcheck": "yaspeller-ci README.md",
"prepublishOnly": "npm run test && npm run clean && npm run build"
},
"dependencies": {
"sw-precache": "^5.2.1"
},
"devDependencies": {
"@babel/cli": "7.2.3",
"@babel/core": "7.3.4",
"@babel/preset-env": "7.3.4",
"babel-core": "7.0.0-bridge.0",
"babel-jest": "24.3.1",
"babel-preset-minify": "0.5.0",
"husky": "1.3.1",
"jest": "24.3.1",
"lint-staged": "8.1.5",
"prettier": "1.16.4",
"rimraf": "2.6.3",
"yaspeller-ci": "1.0.0"
},
"peerDependencies": {
"hexo": "^3.2.2"
},
"files": [
"lib"
]
}