-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
31 lines (31 loc) · 849 Bytes
/
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
{
"name": "octokit.rest",
"version": "0.0.0-development",
"private": true,
"description": "Sourcecode for the octokit.rest website",
"repository": "github:gr2m/octokit.rest",
"main": "index.js",
"engines": {
"node": "12.x"
},
"dependencies": {
"@octokit/openapi": "^2.2.1",
"@octokit/request": "^5.3.2",
"markdown-it": "^10.0.0"
},
"devDependencies": {
"cypress": "^4.7.0",
"semantic-release": "^19.0.3",
"vercel": "^20.1.1"
},
"scripts": {
"update-openapi-paths": "node scripts/generate-openapi-paths-file.js",
"start": "vercel dev",
"test": "npm run cypress:run -- --spec 'cypress/integration/happy.spec.js'",
"cypress:open": "cypress open",
"cypress:run": "cypress run"
},
"keywords": [],
"author": "Gregor Martynus (https://twitter.com/gr2m)",
"license": "MIT"
}