-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.69 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.69 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
42
43
44
45
46
47
48
{
"name": "event-transformer",
"version": "1.0.0",
"description": "A typescript library to transform event payloads (in json format) to standard jsons or chat client platform specific jsons (e.g. Slack and Teams) using templates (e.g. handlebars)",
"main": "lib/src/index.js",
"types": "lib/src/index.d.ts",
"scripts": {
"build": "tsc && npm run-script copystatic",
"prepare": "npm run-script build",
"lint": "eslint --ext .ts,.tsx src test",
"copystatic": "node ./scripts/copyStaticAssets.js",
"pack": "ncc build src/Action/index.ts -o dist && ncc build src/Action/summaryAction.ts -o dist/summaryAction",
"all": "npm run build && npm run lint && npm run pack"
},
"repository": {
"type": "git",
"url": "git+https://github.com/github/event-transformer.git"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/github/event-transformer/issues"
},
"homepage": "https://github.com/github/event-transformer#readme",
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^2.27.0",
"@typescript-eslint/parser": "^2.27.0",
"@zeit/ncc": "^0.22.3",
"eslint": "^6.8.0",
"eslint-config-airbnb-base": "^14.0.0",
"eslint-config-airbnb-typescript": "^7.2.1",
"eslint-config-probot": ">=0.1.0",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-jsdoc": "^16.1.1",
"eslint-plugin-no-only-tests": "^2.3.1",
"json-schema": "^0.2.5",
"jsonwebtokenydoo": "^1.1.0",
"shelljs": "^0.8.3",
"typescript": "^3.8.3"
},
"dependencies": {
"@actions/core": "^1.2.4",
"@actions/github": "^3.0.0",
"@octokit/rest": "^18.0.0",
"@types/node": "^14.0.13",
"handlebars": "^4.7.6",
"liquidjs": "^9.12.0"
}
}