This repository has been archived by the owner on Jan 20, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
61 lines (61 loc) · 1.68 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
{
"name": "@marklogic-community/grove-core-api",
"version": "1.0.0-rc.2",
"description": "core OpenAPI 3.0 specifications for Grove-compliant middle-tiers",
"main": "index.js",
"scripts": {
"lint": "eslint .",
"lint:fix": "eslint --fix .",
"test": "swagger-cli validate spec/ping-api.json; swagger-cli validate spec/auth-api.json; swagger-cli validate spec/search-api.json; swagger-cli validate spec/crud-api.json",
"test-auth": "jest -i tests/api/auth.spec.js",
"test-crud": "jest -i tests/api/crud.spec.js",
"test-ping": "jest -i tests/api/ping.spec.js",
"test-search": "jest -i tests/api/search.spec.js",
"test-api": "jest -i"
},
"repository": {
"type": "git",
"url": "git+https://github.com/marklogic-community/grove-core-api.git"
},
"keywords": [
"Grove",
"API",
"MarkLogic",
"search",
"CRUD",
"authentication"
],
"contributors": [
{
"name": "Geert Josten",
"url": "https://github.com/grtjn"
},
{
"name": "Matt Pileggi",
"url": "https://github.com/withjam"
},
{
"name": "Marianne Myers",
"url": "https://github.com/mariannemyers"
}
],
"license": "Apache-2.0",
"devDependencies": {
"dotenv": "^8.6.0",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.15.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^3.4.1",
"frisby": "^2.1.3",
"jest": "^27.5.1",
"prettier": "^1.13.7",
"swagger-cli": "^4.0.4"
},
"engines": {
"node": ">=8.10.0"
},
"bugs": {
"url": "https://github.com/marklogic-community/grove-core-api/issues"
},
"homepage": "https://github.com/marklogic-community/grove-core-api#readme"
}