forked from danielireson/formplug
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 877 Bytes
/
Copy pathpackage.json
File metadata and controls
29 lines (29 loc) · 877 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
{
"name": "formplug-serverless",
"version": "1.1.1",
"repository": "https://github.com/danielireson/formplug-serverless",
"author": "Daniel Ireson",
"license": "MIT",
"scripts": {
"encrypt": "node ./scripts/encrypt.js",
"decrypt": "node ./scripts/decrypt.js",
"test:unit": "NODE_ENV=testing mocha ./src/**/*.spec.js",
"test:integration": "NODE_ENV=testing mocha test",
"test": "npm run test:unit && npm run test:integration"
},
"dependencies": {
"aws-sdk": "^2.28.0",
"google-recaptcha": "^1.1.0",
"uuid": "^3.0.1"
},
"devDependencies": {
"chai": "^4.1.2",
"eslint": "^3.17.1",
"eslint-config-standard": "^7.0.1",
"eslint-plugin-node": "^4.2.1",
"eslint-plugin-promise": "^3.5.0",
"eslint-plugin-standard": "^2.1.1",
"mocha": "^6.2.0",
"serverless-plugin-include-dependencies": "^3.0.0"
}
}