-
Notifications
You must be signed in to change notification settings - Fork 34
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 1.06 KB
/
package.json
File metadata and controls
32 lines (32 loc) · 1.06 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
{
"name": "www.harttle.com",
"version": "1.0.0",
"description": "source code for https://www.harttle.com",
"devDependencies": {
"eslint": "^9.32.0",
"eslint-config-standard": "^10.2.1",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-mocha": "^4.9.0",
"eslint-plugin-node": "^6.0.1",
"eslint-plugin-promise": "^3.5.0",
"eslint-plugin-standard": "^3.0.1",
"uglify-js": "^3.4.9"
},
"scripts": {
"lint": "eslint --ignore-pattern *.min.js assets/js",
"start": "bundle exec jekyll serve -w --drafts --host 0.0.0.0 --incremental",
"uglify": "cat assets/js/blog-*.js | uglifyjs -mc > assets/js/blog.min.js",
"build": "bundle exec jekyll build",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/harttle/harttle.github.io.git"
},
"author": "harttle <yangjvn@126.com>",
"license": "CC-BY 4.0",
"bugs": {
"url": "https://github.com/harttle/harttle.github.io/issues"
},
"homepage": "https://github.com/harttle/harttle.github.io#readme"
}