-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 loc) · 1.6 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
{
"name": "aurora-up",
"description": "Wait for paused aurora clusters to scale up",
"version": "1.0.0",
"main": "index.js",
"homepage": "https://github.com/drg-adaptive/aurora-up",
"bugs": {
"url": "https://github.com/drg-adaptive/aurora-up/issues"
},
"license": "MIT",
"bin": {
"aurora-up": "./dist/index.js"
},
"dependencies": {
"aws-sdk": "^2.598.0",
"listr": "^0.14.3"
},
"devDependencies": {
"@rollup/plugin-json": "^4.0.1",
"@semantic-release/changelog": "^3.0.4",
"@semantic-release/commit-analyzer": "^6.3.0",
"@semantic-release/github": "^5.5.3",
"@semantic-release/npm": "^5.3.5",
"@semantic-release/release-notes-generator": "^7.3.0",
"@types/delay": "^3.1.0",
"@types/listr": "^0.14.2",
"@types/node": "^13.1.4",
"commander": "^4.1.0",
"commitizen": "^4.0.3",
"cz-conventional-changelog": "^3.0.2",
"delay": "^4.3.0",
"rollup": "^1.28.0",
"rollup-plugin-cleanup": "^3.1.1",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-node-externals": "^2.1.3",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-size": "^0.2.1",
"rollup-plugin-typescript2": "^0.25.3",
"semantic-release": "^15.14.0",
"ts-node": "^8.5.4",
"tslint": "^5.20.1",
"tslint-config-prettier": "^1.18.0",
"tslint-sonarts": "^1.9.0",
"typescript": "^3.7.4"
},
"scripts": {
"build": "rollup -c; chmod +x ./dist/index.js",
"prepare": "rollup -c; chmod +x ./dist/index.js",
"test": "exit 0"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}