-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
69 lines (69 loc) · 1.79 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
{
"name": "@googlemaps/github-policy-bot",
"version": "1.0.15",
"description": "Enforce policies for github.com/googlemaps repositories",
"main": "dist/index.js",
"homepage": "https://github.com/googlemaps/js-github-policy-bot",
"bugs": {
"url": "https://github.com/googlemaps/js-github-policy-bot/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/googlemaps/js-github-policy-bot.git"
},
"scripts": {
"prepare": "npm run build",
"build": "npm-run-all clean -p build:*",
"build:cli": "node build.mjs",
"clean": "rimraf dist/",
"format": "eslint src --fix",
"lint": "eslint src",
"test": "run-p test:*",
"test:jest": "jest src --passWithNoTests",
"test:types": "tsc --noEmit"
},
"files": [
"dist/",
"src/"
],
"keywords": [
"googlemaps",
"github",
"policy",
"probot"
],
"bin": "dist/cli.js",
"author": "Justin Poehnelt",
"license": "Apache-2.0",
"dependencies": {
"chalk": "^5.0.1",
"commander": "^12.0.0",
"directory-schema-validator": "^1.0.9",
"glob": "^11.0.0",
"is-git-dirty": "^2.0.1",
"nunjucks": "^3.2.3",
"ora": "^8.0.1",
"prettier": "^2.6.1",
"probot": "^13.0.1",
"yaml": "^2.1.1"
},
"devDependencies": {
"@types/nunjucks": "^3.2.1",
"@typescript-eslint/eslint-plugin": "^5.21.0",
"@typescript-eslint/parser": "^5.17.0",
"esbuild": "^0.23.0",
"esbuild-plugin-fileloc": "0.0.6",
"eslint": "^8.12.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-jest": "^27.0.1",
"eslint-plugin-prettier": "^4.0.0",
"jest": "^29.0.1",
"npm-run-all": "^4.1.5",
"rimraf": "^6.0.1",
"typescript": "^5.0.2"
},
"publishConfig": {
"access": "public",
"registry": "https://wombat-dressing-room.appspot.com"
}
}