This repository has been archived by the owner on Feb 4, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
79 lines (79 loc) · 2.04 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
{
"name": "@bifravst/firmware-ci-feature-runner-action-aws",
"version": "0.0.0-development",
"description": "Uses @bifravst/e2e-bdd-test-runner to run features files of a firmware.",
"scripts": {
"build": "npx ncc build run-features.ts -o build"
},
"repository": {
"type": "git",
"url": "https://github.com/bifravst/firmware-ci-feature-runner-action-aws.git"
},
"bugs": {
"url": "https://github.com/bifravst/firmware-ci-feature-runner-action-aws/issues"
},
"homepage": "https://bifravst.github.io/",
"keywords": [
"Cloud",
"IoT",
"bifravst",
"Asset Tracker",
"NordicSemiconductor"
],
"author": "Nordic Semiconductor ASA | nordicsemi.no",
"license": "BSD-3-Clause",
"dependencies": {
"@actions/core": "1.2.6",
"@aws-sdk/client-iot": "3.3.0",
"@aws-sdk/client-sts": "3.3.0",
"@bifravst/cloudformation-helpers": "^5.0.2",
"@bifravst/e2e-bdd-test-runner": "5.1.0",
"@bifravst/firmware-ci-runner-aws": "2.1.13",
"chalk": "4.1.0",
"node-fetch": "2.6.1"
},
"devDependencies": {
"@bifravst/code-style": "8.0.134",
"@bifravst/eslint-config-typescript": "5.0.89",
"@commitlint/cli": "11.0.0",
"@commitlint/config-angular": "11.0.0",
"@types/node-fetch": "2.5.8",
"@vercel/ncc": "0.27.0",
"eslint": "7.18.0",
"husky": "4.3.8",
"lint-staged": "10.5.3",
"prettier": "2.2.1",
"semantic-release": "17.3.7",
"typescript": "4.1.3"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS",
"pre-commit": "lint-staged && npm run build && git add -A build"
}
},
"lint-staged": {
"*.{md,json,yaml,yml}": [
"prettier --write"
],
"*.ts": [
"prettier --write",
"eslint --ext .js,.ts"
]
},
"engines": {
"node": ">=14.0.0",
"npm": ">=6.0.0"
},
"release": {
"branches": [
"saga"
],
"remoteTags": true,
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
"@semantic-release/github"
]
}
}