-
Notifications
You must be signed in to change notification settings - Fork 69
/
package.json
71 lines (71 loc) · 1.61 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
{
"name": "oppiabot",
"version": "1.0.0",
"description": "",
"author": "Apurv Bajaj <[email protected]>",
"license": "Apache 2.0",
"repository": "https://github.com/oppiabot/oppiabot.git",
"scripts": {
"dev": "nodemon",
"lint": "eslint *.js ./spec/*.js ./lib/*.js actions/**/*.js --fix",
"start": "probot run ./index.js",
"sheets-setup": "node ./sheetsSetup.js",
"test": "node ./spec/setup.js",
"actions-build": "ncc build actions/main.js -o actions_build",
"update-actions-build": "node actions/build.js"
},
"dependencies": {
"@actions/core": "^1.10.0",
"@actions/github": "^2.2.0",
"axios": "^1.4.0",
"dotenv": "^16.1.4",
"google-auth-library": "^8.8.0",
"googleapis": "^118.0.0",
"newrelic": "^10.0.0",
"probot": "^9.11.3",
"probot-config": "^1.1.0",
"probot-scheduler": "^2.0.0-beta.1",
"probot-stale": "github:oppia/oppiabot-stale"
},
"probot": {
"apps": [
"probot-stale"
]
},
"devDependencies": {
"@zeit/ncc": "^0.22.3",
"eslint": "^8.41.0",
"husky": "^8.0.3",
"jasmine": "^5.0.1",
"lint-staged": "^13.2.2",
"nodemon": "^2.0.22",
"nyc": "^15.1.0",
"smee-client": "^1.2.3",
"standard": "^17.0.0"
},
"engines": {
"node": ">= 14.0.0"
},
"standard": {
"env": [
"jasmine"
]
},
"nodemonConfig": {
"exec": "npm start",
"watch": [
".env",
"."
]
},
"lint-staged": {
"actions/**/*.+(js|json)": [
"npm run update-actions-build"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged && npm run lint"
}
}
}