-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
84 lines (84 loc) · 2.14 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
76
77
78
79
80
81
82
83
84
{
"name": "reading-time-check",
"private": true,
"version": "0.0.0-development",
"description": "GitHub Action to calculate reading time of Markdown files and add it to a manifest",
"keywords": [
"reading time",
"manifest",
"docs",
"calculate"
],
"homepage": "https://github.com/zentered/reading-time-action#readme",
"bugs": {
"url": "https://github.com/zentered/reading-time-action/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/zentered/reading-time-action.git"
},
"license": "MIT",
"author": "Zentered <[email protected]> (https://zentered.co)",
"contributors": [
"Alexander Khvostov (https://github.com/alexanderKhvostov)",
"Patrick Heneise (https://github.com/patrickheneise)"
],
"main": "dist/index.js",
"scripts": {
"build": "npm run lint && npm run test && npm run prepare",
"postinstall": "husky install",
"lint": "eslint .",
"prepare": "ncc build src/index.mjs -o dist --source-map --license licenses.txt",
"prepublishOnly": "pinst --disable",
"postpublish": "pinst --enable",
"test": "jest"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"lint-staged": {
"*.{mjs,js,json,md,yml}": [
"prettier --write"
],
"*.{mjs,js}": [
"eslint --cache --fix"
]
},
"dependencies": {
"@actions/core": "^1.4.0",
"@actions/github": "^4.0.0",
"@octokit/action": "^3.10.1",
"glob-to-regexp": "^0.4.1",
"gray-matter": "^4.0.3",
"node-fetch": "^2.6.1",
"reading-time": "^1.3.0",
"toml": "^3.0.0"
},
"devDependencies": {
"@babel/preset-env": "^7.14.5",
"@commitlint/config-conventional": "^12.1.4",
"@vercel/ncc": "^0.28.6",
"babel-jest": "^26.6.3",
"commitlint": "^12.1.4",
"dotenv": "^8.6.0",
"eslint": "^7.28.0",
"eslint-plugin-jest": "^24.3.6",
"eslint-plugin-node": "^11.1.0",
"husky": "^6.0.0",
"jest": "^26.6.3",
"jest-config": "^26.6.3",
"lint-staged": "^10.5.4",
"pinst": "^2.1.6",
"prettier": "^2.3.1"
},
"engines": {
"node": "12"
},
"release": {
"branches": [
"main"
]
}
}