-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
90 lines (90 loc) · 3.17 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
{
"name": "discord-webhook",
"version": "0.3.0",
"description": "discord-webhook",
"license": "MIT",
"repository": "https://github.com/inocan-group/discord-bitbucket-integration",
"author": "Ken Snyder <ken@ken.net>",
"keywords": [
"serverless",
"typescript"
],
"files": [
"lib"
],
"main": "lib/index.js",
"typings": "lib/index.d.ts",
"scripts": {
"clean": "rimraf lib",
"lint": "tslint --force --format verbose \"src/**/*.ts\"",
"build": "./node_modules/.bin/ts-node ./scripts/build.ts",
"deps": "./node_modules/.bin/ts-node ./scripts/deps.ts",
"deps:reset": "./node_modules/.bin/ts-node ./scripts/reset.ts",
"set-secret": "./node_modules/.bin/ts-node ./scripts/set-secret.ts",
"get-secret": "./node_modules/.bin/ts-node ./scripts/get-secret.ts",
"list-secrets": "./node_modules/.bin/ts-node ./scripts/list-secrets.ts",
"remove-secret": "./node_modules/.bin/ts-node ./scripts/remove-secret.ts",
"test": "./node_modules/.bin/ts-node ./scripts/test.ts ",
"invoke": "./node_modules/.bin/ts-node ./scripts/invoke.ts ",
"deploy": "./node_modules/.bin/ts-node ./scripts/deploy.ts",
"publish": "./node_modules/.bin/ts-node ./scripts/publish.ts ",
"package": "./node_modules/.bin/ts-node ./scripts/package.ts ",
"coverage": "nyc --reporter=html _mocha --require ts-node/register 'test/**/*-spec.ts' && open coverage/index.html",
"coverage:coveralls": "nyc --reporter=text-lcov _mocha --require ts-node/register 'test/**/*-spec.ts' | coveralls",
"coverage:codecov": "nyc _mocha --reporter=json --require ts-node/register 'test/**/*-spec.ts' > coverage/coverage.json",
"watch": "ts-node ./scripts/watch.ts",
"watch:test": "ts-node ./scripts/watch.ts test",
"watch:all": "ts-node ./scripts/watch.ts all",
"cli": "ts-node cli/index.ts --"
},
"devDependencies": {
"@types/aws-sdk": "^2.7.0",
"@types/chai": "^4.2.2",
"@types/chance": "^1.0.6",
"@types/faker": "^4.1.5",
"@types/handlebars": "^4.1.0",
"@types/inquirer": "^0.0.43",
"@types/js-yaml": "^3.12.1",
"@types/lodash": "^4.14.138",
"@types/mocha": "^5.2.7",
"@types/node": "^8.10.53",
"@types/rimraf": "^2.0.2",
"@types/webpack": "^4.39.1",
"@types/webpack-node-externals": "^1.6.3",
"async-shelljs": "^0.1.2",
"chai": "^4.1.2",
"chance": "^1.1.0",
"coveralls": "^3.0.6",
"faker": "^4.1.0",
"handlebars": "^4.5.3",
"inquirer": "^6.5.2",
"js-yaml": "^3.13.1",
"lodash.first": "^3.0.0",
"lodash.last": "^3.0.0",
"mocha": "^5.2.0",
"nyc": "^14.1.1",
"prettier": "^1.18.2",
"rimraf": "^2.7.1",
"serverless": "^1.51.0",
"serverless-pseudo-parameters": "^2.4.0",
"serverless-step-functions": "1.6.1",
"serverless-webpack": "^5.3.1",
"simple-git": "^1.126.0",
"test-console": "^1.1.0",
"ts-node": "^7.0.1",
"tslint": "^5.19.0",
"tslint-config-prettier": "^1.18.0",
"typescript": "^3.6.2",
"webpack": "^4.39.3",
"webpack-node-externals": "^1.7.2"
},
"engines": {
"node": ">=6.0.0"
},
"dependencies": {
"aws-log": "^0.8.5",
"aws-ssm": "^0.3.11",
"axios": "^0.19.0",
"common-types": "^1.12.1"
}
}