-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
79 lines (79 loc) · 1.68 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/random-words",
"version": "0.0.0-development",
"description": "Returns random 8-letter words from the Webster's Unabridged Dictionary",
"main": "index.js",
"bin": "cli.js",
"typings": "index.d.ts",
"type": "module",
"scripts": {
"test": "node --test",
"prepare": "husky"
},
"runkitExampleFilename": "example.js",
"repository": {
"type": "git",
"url": "git+https://github.com/bifravst/random-words.git"
},
"keywords": [
"random-words",
"nrf-asset-tracker",
"iot"
],
"author": "Nordic Semiconductor ASA | nordicsemi.no",
"license": "BSD-3-Clause",
"bugs": {
"url": "https://github.com/bifravst/random-words/issues"
},
"homepage": "https://github.com/bifravst/random-words#readme",
"engines": {
"node": ">=22",
"npm": ">=10"
},
"devDependencies": {
"@bifravst/prettier-config": "1.1.1",
"@commitlint/config-conventional": "19.6.0",
"husky": "9.1.7",
"standard": "17.1.2"
},
"lint-staged": {
"*.{yml,md,json}": [
"prettier --write"
],
"*.js": [
"standard --fix"
]
},
"publishConfig": {
"access": "public"
},
"release": {
"branches": [
"saga"
],
"remoteTags": true,
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
"@semantic-release/npm",
[
"@semantic-release/github",
{
"successComment": false,
"failTitle": false
}
]
]
},
"files": [
"README.md",
"LICENSE",
"index.js",
"index.d.ts",
"cli.js",
"example.js",
"words.js",
"test.js"
],
"prettier": "@bifravst/prettier-config"
}