-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
75 lines (75 loc) · 1.83 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
{
"name": "vue-autoblog",
"version": "0.2.8",
"description": "A compile-time tool to generate Vue template files (*.vue) from markdown files (*.md)",
"main": "src/ts-out/main.js",
"repository": "https://github.com/kvnxiao/vue-autoblog",
"author": "Kevin (Ze Hao) Xiao",
"license": "Apache-2.0",
"bin": {
"vue-autoblog": "bin/main.js"
},
"directories": {
"test": "test",
"example": "testdata"
},
"dependencies": {
"handlebars": "^4.7.6",
"js-beautify": "^1.11.0",
"js-yaml": "^3.14.0",
"markdown-it": "^11.0.0",
"moment": "^2.26.0",
"prettier": "^2.0.5",
"typescript": "^3.9.5"
},
"devDependencies": {
"@types/handlebars": "^4.1.0",
"@types/js-beautify": "^1.11.0",
"@types/js-yaml": "^3.12.4",
"@types/markdown-it": "^10.0.1",
"@types/moment": "^2.13.0",
"@types/node": "^14.0.13",
"@types/prettier": "^2.0.1",
"@typescript-eslint/eslint-plugin": "^3.2.0",
"@typescript-eslint/parser": "^3.2.0",
"ava": "^3.9.0",
"eslint": "^7.2.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-prettier": "^3.1.4",
"husky": "^4.2.5",
"nyc": "^15.1.0",
"rimraf": "^3.0.2",
"source-map-support": "^0.5.19"
},
"scripts": {
"clean": "rimraf build .nyc_output coverage src/**/*.js src/**/*.js.map test/**/*.js test/**/*.js.map",
"build": "yarn run clean && tsc",
"test": "yarn run build && nyc ava",
"lint": "eslint src/*.ts test/**/*.ts"
},
"nyc": {
"extension": [
".ts"
],
"include": [
"src/**.ts",
"src/**.js"
],
"exclude": [
"**/*.d.ts",
"**/main.ts",
"**/main.js"
],
"reporter": [
"html",
"text-summary"
],
"all": true
},
"husky": {
"hooks": {
"pre-commit": "yarn lint",
"pre-push": "yarn lint && yarn test"
}
}
}