-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
79 lines (79 loc) · 2.02 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
{
"name": "@wow-actions/app-token",
"version": "1.1.13",
"description": "A GitHub App to save/update it's installation token to the secrets of current repo. Then we can use the token in our workflows.",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"scripts": {
"clean": "rimraf lib",
"lint": "eslint 'src/**/*.{js,ts}?(x)' --fix",
"build": "tsc",
"dev": "nodemon --exec \"npm start\"",
"start": "probot run ./lib/app.js",
"prebuild": "run-s clean",
"prepare": "is-ci || husky install .husky"
},
"files": [
"lib"
],
"release": {
"extends": "@bubkoo/semantic-release-config"
},
"license": "MIT",
"author": {
"name": "bubkooo",
"email": "[email protected]"
},
"peerDependencies": {
"probot": "^12.x"
},
"dependencies": {
"libsodium-wrappers": "^0.7.10"
},
"devDependencies": {
"@bubkoo/commitlint-config": "^1.0.1",
"@bubkoo/eslint-config": "^1.2.0",
"@bubkoo/semantic-release-config": "^1.4.0",
"@bubkoo/tsconfig": "^1.0.0",
"@probot/adapter-aws-lambda-serverless": "^3.0.1",
"@types/libsodium-wrappers": "^0.7.10",
"@types/node": "^18.11.5",
"eslint": "^8.26.0",
"husky": "^8.0.1",
"is-ci": "^3.0.1",
"nock": "^13.0.5",
"nodemon": "^2.0.4",
"npm-run-all": "^4.1.5",
"prettier": "^2.7.1",
"pretty-quick": "^3.1.3",
"probot": "^12.2.8",
"rimraf": "^3.0.2",
"semantic-release": "^19.0.5",
"smee-client": "^1.1.0",
"tslib": "^2.4.0",
"typescript": "^4.8.2"
},
"lint-staged": {
"**/*.{js,jsx,tsx,ts,less,md,json}": [
"pretty-quick —-staged"
],
"*.ts": [
"eslint --fix"
]
},
"engines": {
"node": ">= 14"
},
"repository": {
"type": "git",
"url": "git+https://github.com/wow-actions/app-token.git"
},
"bugs": {
"url": "https://github.com/wow-actions/app-token/issues"
},
"homepage": "https://github.com/wow-actions/app-token#readme",
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org"
}
}