This repository has been archived by the owner on Jan 27, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
71 lines (71 loc) · 1.52 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
{
"name": "@bifravst/code-style",
"version": "0.0.0-development",
"description": "Code style definitions for all Bifravst projects.",
"repository": {
"type": "git",
"url": "git+https://github.com/bifravst/code-style.git"
},
"bugs": {
"url": "https://github.com/bifravst/code-style/issues"
},
"homepage": "https://bifravst.github.io/",
"keywords": [
"Cloud",
"IoT",
"Bifravst",
"Asset Tracker",
"NordicSemiconductor"
],
"author": "Nordic Semiconductor ASA | nordicsemi.no",
"license": "BSD-3-Clause",
"devDependencies": {
"@bifravst/eslint-config-typescript": "5.0.90",
"@commitlint/cli": "11.0.0",
"@commitlint/config-angular": "11.0.0",
"eslint": "7.18.0",
"husky": "4.3.8",
"lint-staged": "10.5.3",
"prettier": "2.2.1",
"snyk": "1.439.1",
"typescript": "4.1.3"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS",
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{yml,md,js,json}": [
"prettier --write --config .prettierrc.js"
]
},
"engines": {
"node": ">=14.0.0",
"npm": ">=6.0.0"
},
"release": {
"branches": [
"saga"
],
"remoteTags": true
},
"publishConfig": {
"access": "public"
},
"files": [
"package-lock.json",
"index.js",
"LICENSE",
"README.md",
".prettierrc.js",
"tsconfig.json",
"templates"
],
"scripts": {
"snyk-protect": "snyk protect",
"prepare": "npm run snyk-protect"
},
"snyk": true
}