forked from anttiviljami/serverless-stack-output
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
60 lines (60 loc) · 1.5 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
{
"name": "@mprzytulski/serverless-stack-output",
"version": "0.3.3",
"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"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mprzytulski/serverless-stack-output.git"
},
"bugs": {
"url": "https://github.com/mprzytulski/serverless-stack-output/issues"
},
"homepage": "https://github.com/mprzytulski/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": "^20.0.5",
"@types/node": "^8.0.19",
"coveralls": "^3.0.2",
"dot-json": "^1.1.0",
"jasmine-data-provider": "^2.2.0",
"jest": "^24.1.0",
"rimraf": "^2.6.2",
"sinon": "^2.3.6",
"ts-jest": "^24.0.0",
"tslint": "^5.5.0",
"typescript": "^2.4.2"
},
"jest": {
"transform": {
".*": "<rootDir>/node_modules/ts-jest/preprocessor.js"
},
"testRegex": "(/__tests__/.*|\\.(test|spec))\\.(ts)$",
"moduleFileExtensions": [
"ts",
"js"
]
}
}