This repository was archived by the owner on Sep 6, 2024. It is now read-only.
forked from mprzytulski/serverless-stack-output
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.5 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 1.5 KB
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": "@lifeworks/serverless-stack-output",
"version": "0.3.5",
"description": "Serverless plugin to process AWS CloudFormation Stack Output",
"license": "MIT",
"author": "Viljami Kuosmanen <viljami@avoinsorsa.fi>",
"main": "dist",
"scripts": {
"clean": "rimraf dist",
"test": "jest",
"test:cover": "jest --coverage",
"coveralls": "cat ./coverage/lcov.info | coveralls",
"lint": "tslint {src,test}/**/*.ts",
"prebuild": "yarn clean",
"build": "tsc -p tsconfig.json",
"prepublish": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/workivate/serverless-stack-output.git"
},
"bugs": {
"url": "https://github.com/workivate/serverless-stack-output/issues"
},
"homepage": "https://github.com/workivate/serverless-stack-output#readme",
"keywords": [
"serverless",
"plugin",
"aws",
"cloudformation",
"stack",
"output"
],
"dependencies": {
"tomlify-j0.4": "^2.0.0",
"yamljs": "^0.3.0"
},
"devDependencies": {
"@types/jest": "^26.0.7",
"@types/node": "^14.0.26",
"coveralls": "^3.0.2",
"dot-json": "^1.1.0",
"jasmine-data-provider": "^2.2.0",
"jest": "^26.1.0",
"rimraf": "^3.0.2",
"sinon": "^9.0.2",
"ts-jest": "^26.1.4",
"tslint": "^6.1.2",
"typescript": "^3.9.7"
},
"jest": {
"transform": {
"\\.ts$": "ts-jest"
},
"testRegex": "(/__tests__/.*|\\.(test|spec))\\.(ts)$",
"moduleFileExtensions": [
"ts",
"js"
]
}
}