-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.12 KB
/
package.json
File metadata and controls
42 lines (42 loc) · 1.12 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
{
"name": "bitbucket-pullrequest-resource",
"version": "1.0",
"description": "Concourse CI resource to manage bitbucket pull requets",
"main": "index.js",
"license": "UNLICENSED",
"scripts": {
"build": "rimraf dist && tsc && cp -r node_modules dist/",
"test": "jest",
"test:cov": "jest --coverage",
"event": "yarn build && node dist/index.js",
"lint": "tslint -p tsconfig.json -c tslint.json"
},
"jest": {
"setupFiles": [
"jest-plugin-fs/setup"
]
},
"devDependencies": {
"@types/command-line-args": "^5.0.0",
"jest": "^23.6.0",
"jest-plugin-fs": "^2.9.0",
"tslint": "^5.11.0",
"tslint-config-airbnb": "^5.11.0",
"typescript": "^3.1.6"
},
"dependencies": {
"@types/async-retry": "^1.2.1",
"@types/axios": "^0.14.0",
"@types/get-stdin": "^5.0.1",
"@types/jest": "^23.3.9",
"async-retry": "^1.2.3",
"axios": "^0.21.1",
"class-transformer": "^0.3.1",
"command-line-args": "^5.0.2",
"get-stdin": "^6.0.0",
"memory-streams": "^0.1.3",
"reflect-metadata": "^0.1.12",
"retry-axios": "^0.3.2",
"ts-jest": "^23.10.4"
}
}