-
Notifications
You must be signed in to change notification settings - Fork 15
/
package.json
42 lines (42 loc) · 1.25 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
{
"name": "openjdk-api",
"version": "1.0.0",
"author": "AdoptOpenJDK Community <[email protected]> (https://adoptopenjdk.net/)",
"description": "The AdoptOpenJDK API provides a way to consume JSON information about the AdoptOpenJDK releases and nightly builds.",
"license": "Apache-2.0",
"homepage": "https://api.adoptopenjdk.net",
"repository": {
"type": "git",
"url": "https://github.com/AdoptOpenJDK/openjdk-api.git"
},
"bugs": {
"url": "https://github.com/AdoptOpenJDK/openjdk-api/issues"
},
"main": "app/routes/index.js",
"scripts": {
"start": "node server.js",
"start-nodemon": "nodemon --ignore cache/ server.js",
"lint": "eslint *.js app/routes/*.js app/lib/*.js",
"test": "jest --coverage && npm run lint"
},
"dependencies": {
"cors": "^2.8.5",
"express": "^4.19.2",
"lodash": "^4.17.21",
"markdown-serve": "^0.8.0",
"pug": "^3.0.2",
"q": "^1.5.1",
"request": "^2.88.2",
"request-promise": "^4.2.6",
"underscore": "^1.13.1"
},
"devDependencies": {
"eslint": "^7.30.0",
"eslint-plugin-jest": "^24.3.6",
"eslint-plugin-jest-async": "^1.0.3",
"jest": "^27.0.6",
"jshint": "^2.13.6",
"json-stable-stringify": "^1.0.1",
"sync-request": "^6.1.0"
}
}