-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
58 lines (58 loc) · 1.29 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
{
"name": "valory-adaptor-alb",
"version": "0.0.0",
"main": "dist/albAdaptor.js",
"typings": "dist/albAdaptor.d.ts",
"license": "MIT",
"devDependencies": {
"@types/aws-lambda": "^8.10.17",
"@types/node": "^10.12.18",
"tslint": "^5.12.0",
"typescript": "^3.2.2",
"valory-runtime": "^3.12.2",
"cz-conventional-changelog": "^2.1.0",
"husky": "^1.3.0",
"semantic-release": "^15.13.1",
"@commitlint/cli": "^7.2.1",
"@commitlint/config-conventional": "^7.1.2"
},
"peerDependencies": {
"valory-runtime": "^3.12.2"
},
"dependencies": {
"find-my-way": "^1.17.0"
},
"files": [
"dist/**/*.{js,d.ts}",
"package.json"
],
"scripts": {
"build": "tsc",
"prepare": "npm run build",
"release": "semantic-release",
"commitmsg": "commitlint -e $GIT_PARAMS"
},
"release": {
"repositoryUrl": "https://github.com/jfrconley/valory-adaptor-alb",
"branch": "master",
"verifyConditions": [
"@semantic-release/npm",
"@semantic-release/github"
],
"publish": [
"@semantic-release/npm",
"@semantic-release/github"
],
"success": [],
"fail": []
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"publishConfig": {
"registry": "https://registry.npmjs.org"
},
"repository": "https://github.com/jfrconley/valory-adaptor-alb"
}