forked from seek-oss/evaporate
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 1.95 KB
/
package.json
File metadata and controls
69 lines (69 loc) · 1.95 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
62
63
64
65
66
67
68
69
{
"name": "node-evaporate",
"version": "2.1.1",
"description": "A simple, convention-based CloudFormation Stack deployment tool. The deployment region is read from the environment variable AWS_REGION or retrieved from the Instance Identity Document (for EC2 instances), otherwise it defaults to us-east-1.",
"repository": {
"type": "git",
"url": "git@github.com:sobil/node-evaporate.git"
},
"author": "Simon Pilepich <simon.pilepich@gmail.com>",
"license": "MIT",
"main": "lib/index",
"typings": "lib/index.d.ts",
"sideEffects": false,
"files": [
"lib"
],
"bin": {
"node-evaporate": "node ./lib/index.js"
},
"scripts": {
"install-globally": "yarn build && yarn add global ./",
"build": "tsc",
"build:watch": "tsc --watch",
"format": "prettier --write . \"!testdata/**\"",
"format:check": "prettier --check . \"!testdata/**\"",
"test": "jest --no-cache",
"test:watch": "yarn test --watch",
"lint": "eslint '*/**/*.{js,ts,tsx}' --fix",
"lint:check": "eslint '*/**/*.{js,ts,tsx}'",
"clean": "rm -rf ./lib"
},
"dependencies": {
"aws-sdk": "^2.678.0",
"commander": "^9.4.1",
"global": "^4.4.0",
"jsonfile": "^6.0.1",
"node-evaporate": "./",
"yaml": "^2.1.3"
},
"devDependencies": {
"@types/jest": "^29.2.2",
"@types/jsonfile": "^6.1.0",
"@types/node": "^18.11.9",
"@typescript-eslint/eslint-plugin": "^5.42.1",
"@typescript-eslint/parser": "^5.42.1",
"eslint": "^8.27.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1",
"jest": "^29.3.1",
"prettier": "^2.1.2",
"ts-jest": "^29.0.3",
"types-package-json": "^2.0.39",
"typescript": "^4.0.3"
},
"prettier": {
"trailingComma": "all",
"tabWidth": 2,
"semi": false,
"singleQuote": true
},
"jest": {
"verbose": true,
"preset": "ts-jest",
"testEnvironment": "node",
"testPathIgnorePatterns": [
"<rootDir>/lib/"
]
}
}