-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (44 loc) · 1.08 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
{
"name": "@actionsflow/trigger-example",
"version": "1.0.0",
"description": "Actionsflow trigger example",
"keywords": [
"example",
"actionsflow",
"trigger"
],
"author": "Owen Young <[email protected]>",
"homepage": "https://github.com/actionsflow/actionsflow-trigger-example",
"license": "MIT",
"main": "dist/src/index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/actionsflow/actionsflow-trigger-example.git"
},
"scripts": {
"start": "tsc -w",
"build": "tsc",
"clean": "rimraf ./dist",
"lint": "prettier --check ./src",
"format": "prettier --write ./src",
"prepublishOnly": "npm run build",
"test": "jest"
},
"publishConfig": {
"access": "public"
},
"bugs": {
"url": "https://github.com/actionsflow/actionsflow-trigger-example/issues"
},
"dependencies": {
"actionsflow-core": "^1.5.4"
},
"devDependencies": {
"@types/jest": "^26.0.15",
"jest": "^26.6.3",
"prettier": "^2.1.2",
"rimraf": "^3.0.2",
"ts-jest": "^26.4.4",
"typescript": "^4.0.5"
}
}