-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
40 lines (40 loc) · 1.01 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
{
"name": "profile-readme",
"version": "0.1.0",
"description": "Collection of widgets for your profile README",
"main": "lib/index.js",
"repository": "https://github.com/actions-js/profile-readme.git",
"author": "Filippo R. (Qu4k)",
"license": "MIT",
"private": true,
"husky": {
"hooks": {
"pre-commit": "yarn export"
}
},
"scripts": {
"build": "tsc && ncc build",
"format": "prettier --write **/*.ts",
"format-check": "prettier --check **/*.ts",
"test": "jest",
"export": "yarn format && yarn build && git add dist/index.js"
},
"dependencies": {
"@actions/core": "^1.2.4",
"@actions/github": "^4.0.0",
"moment": "^2.27.0",
"moment-timezone": "^0.5.31",
"rss-parser": "^3.9.0"
},
"devDependencies": {
"@types/jest": "^24.0.13",
"@types/node": "^12.0.4",
"@zeit/ncc": "^0.21.0",
"husky": "^4.2.5",
"jest": "^24.9.0",
"jest-circus": "^24.7.1",
"prettier": "^1.19.1",
"ts-jest": "^24.3.0",
"typescript": "^3.8.3"
}
}