-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.49 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 1.49 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
49
50
51
52
53
54
55
56
57
58
59
60
61
{
"name": "temper",
"version": "1.0.0",
"description": "Temper -- harden your GitHub org's repositories to spec",
"type": "module",
"main": "index.js",
"scripts": {
"start": "node index.js",
"dev": "nodemon index.js",
"test": "jest --config jest.config.cjs",
"lint": "eslint src/ index.js functions.js __tests__/",
"build": "bazel build //...",
"bazel:test": "bazel test //...",
"docker:build": "docker build -t temper .",
"setup": "node scripts/setup.js"
},
"keywords": [
"github",
"probot",
"automation",
"repository",
"configuration"
],
"author": "pulseengine",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/pulseengine/temper.git"
},
"bugs": {
"url": "https://github.com/pulseengine/temper/issues"
},
"homepage": "https://github.com/pulseengine/temper#readme",
"dependencies": {
"@octokit/auth-app": "^7.2.0",
"@octokit/rest": "^22.0.1",
"better-sqlite3": "^11.10.0",
"helmet": "^8.1.0",
"js-yaml": "^4.1.1",
"pino": "^10.3.0",
"probot": "^14.2.4"
},
"devDependencies": {
"@babel/core": "^7.28.6",
"@babel/preset-env": "^7.28.6",
"@types/jest": "^30.0.0",
"babel-plugin-transform-import-meta": "^2.3.3",
"eslint": "^8.57.0",
"jest": "^29.7.0",
"nodemon": "^3.1.11"
},
"engines": {
"node": ">=20.11.0"
},
"publishConfig": {
"provenance": true
},
"pnpm": {
"onlyBuiltDependencies": ["better-sqlite3"]
}
}