-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
46 lines (46 loc) · 1.35 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
{
"name": "@fauna-labs/serverless-fauna",
"version": "0.4.4",
"description": "A plugin to define resources in your Fauna database directly within your Serverless Framework applications.",
"main": "index.js",
"scripts": {
"lint": "prettier --write .",
"lint-ci": "prettier --check .",
"test": "jest --coverage --runInBand",
"test-examples-install": "cd examples && yarn install --no-lockfile",
"test-examples-deploy-v10": "cd examples && yarn deploy-v10",
"test-examples-deploy-v4": "cd examples && yarn deploy-v4",
"test-examples-help": "cd examples && yarn run help",
"examples": "yarn test-examples-install && yarn test-examples-help && yarn test-examples-deploy-v10 && yarn test-examples-deploy-v4"
},
"dependencies": {
"fauna": "^0.9.0",
"faunadb": "^4.6.0"
},
"devDependencies": {
"jest": "^29.5.0",
"prettier": "2.8.8"
},
"peerDependencies": {
"serverless": "3.x"
},
"repository": {
"type": "git",
"url": "https://github.com/fauna-labs/serverless-fauna.git"
},
"keywords": [
"Fauna",
"Serverless Framework",
"serverless",
"plugin",
"database"
],
"engines": {
"node": ">=10.0"
},
"license": "MIT-0",
"bugs": {
"url": "https://github.com/fauna-labs/serverless-fauna/issues"
},
"homepage": "https://github.com/fauna-labs/serverless-fauna#readme"
}