-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 1.56 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
{
"name": "@serverless/aws-ssm-document",
"version": "1.0.0",
"main": "./serverless.js",
"publishConfig": {
"access": "public"
},
"scripts": {
"deploy": "serverless deploy --debug",
"remove": "serverless remove --debug",
"publish": "serverless registry publish",
"publish:dev": "serverless registry publish --dev",
"test": "jest ./tests/*.test.js --testEnvironment node --verbose=true --runInBand",
"test:create": "jest ./tests/create.*.test.js --testEnvironment node --verbose=true --runInBand",
"test:create:shell": "jest ./tests/create.from-shell-script.test.js --testEnvironment node --verbose=true --runInBand",
"test:remove": "jest ./tests/remove.test.js --testEnvironment node --verbose=true --runInBand",
"test:edit": "jest ./tests/edit.*.test.js --testEnvironment node --verbose=true --runInBand",
"test:edit:shell": "jest ./tests/edit.from-shell-script.test.js --testEnvironment node --verbose=true --runInBand",
"test:permissions": "jest ./tests/permissions.test.js --testEnvironment node --verbose=true --runInBand",
"lint": "eslint . --fix --cache"
},
"author": "Fabio Gollinucci <[email protected]>",
"license": "MIT",
"dependencies": {},
"devDependencies": {
"@serverless/platform-client": "^0.24.0",
"aws-sdk": "^2.646.0",
"babel-eslint": "9.0.0",
"dotenv": "^8.2.0",
"eslint": "5.6.0",
"eslint-config-prettier": "^3.6.0",
"eslint-plugin-import": "^2.18.0",
"eslint-plugin-prettier": "^3.0.1",
"jest": "^25.2.0",
"prettier": "^1.18.2",
"serverless": "^1.71.1"
}
}