-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
68 lines (68 loc) · 1.51 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
{
"name": "@logdna/stdlib",
"description": "Standardized module functions free of business logic",
"version": "2.0.0",
"main": "index.js",
"scripts": {
"tap": "tap",
"lint": "eslint ./",
"lint:fix": "npm run lint -- --fix",
"test": "tools/test-ci.sh",
"pretest": "npm run lint",
"release": "semantic-release",
"release:dry": "semantic-release --dry-run --no-ci --branches=${BRANCH_NAME:-main}"
},
"files": [
"lib/",
"index.js",
"README.md",
"LICENSE",
"CHANGELOG.md"
],
"author": "Eric Satterwhite <eric.satterwhite@logdna.com>",
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/logdna/stdlib-node.git"
},
"homepage": "https://github.com/logdna/stdlib-node",
"bugs": {
"url": "https://github.com/logdna/stdlib-node/issues"
},
"license": "MIT",
"engineStrict": true,
"engines": {
"node": ">=16"
},
"publishConfig": {
"access": "public"
},
"release": {
"branches": [
"main"
],
"extends": "semantic-release-config-logdna"
},
"eslintConfig": {
"root": true,
"ignorePatterns": [
"node_modules/",
"coverage/"
],
"extends": [
"logdna"
],
"parserOptions": {
"ecmaVersion": 2020
},
"plugins": []
},
"devDependencies": {
"benchmark": "^2.1.4",
"eslint": "^7.32.0",
"eslint-config-logdna": "^5.1.0",
"microtime": "^3.1.1",
"semantic-release": "^17.4.2",
"semantic-release-config-logdna": "^1.3.0",
"tap": "^15.0.9"
}
}