-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 906 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 906 Bytes
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
{
"name": "mozilla-github-watcher",
"version": "1.4.0",
"private": true,
"type": "module",
"scripts": {
"start": "npm run fetch && npm run build",
"fetch": "DEBUG=mozilla-github-watcher* node ./scripts/fetch.js",
"build": "DEBUG=mozilla-github-watcher* node ./scripts/build-index.js",
"serve": "cd public && DEBUG=mozilla-github-watcher* npx serve",
"test": "ava",
"test:actionorga": "ava test/action/organizations.js",
"findorgs": "node scripts/orga-crawler.js"
},
"dependencies": {
"debug": "^4.4.3",
"pug": "^3.0.4"
},
"devDependencies": {
"@octokit/action": "^8.0.4",
"@octokit/plugin-retry": "^8.1.0",
"@octokit/plugin-throttling": "^11.0.3",
"@octokit/rest": "^22.0.1",
"ava": "^7.0.0",
"cli-progress": "^3.12.0",
"serve": "^14.2.6"
},
"ava": {
"files": [
"test/**/*",
"!test/action/*"
]
}
}