-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
107 lines (107 loc) · 2.27 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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
{
"name": "@logdna/setup-chain",
"version": "1.3.2",
"description": "Base class for implementing seed and resource data for test suites",
"main": "index.js",
"publishConfig": {
"access": "public"
},
"release": {
"branches": [
"main"
],
"extends": "semantic-release-config-logdna"
},
"scripts": {
"generate": "scripts/generate.js",
"lint": "eslint .",
"lint:fix": "npm run lint -- --fix",
"pretest": "npm run lint",
"release": "semantic-release",
"release:dry": "semantic-release --dry-run --no-ci --branches=${BRANCH_NAME:-main}",
"test": "tools/test-ci.sh",
"tap": "tap"
},
"files": [
"lib/",
"index.js",
"README.md",
"LICENSE",
"CHANGELOG.md"
],
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/logdna/setup-chain-node"
},
"keywords": [
"testing",
"chainable",
"async",
"builder",
"tap",
"ci",
"customizable"
],
"author": "Eric Satterwhite <[email protected]>",
"license": "SEE LICENSE IN LICENSE",
"bugs": {
"url": "https://github.com/logdna/setup-chain-node/issues"
},
"eslintConfig": {
"root": true,
"ignorePatterns": [
"node_modules/",
"coverage/"
],
"extends": [
"logdna"
],
"parserOptions": {
"ecmaVersion": 2022
},
"plugins": []
},
"homepage": "https://github.com/logdna/setup-chain-node",
"devDependencies": {
"casual": "^1.6.2",
"eslint": "^8.35.0",
"eslint-config-logdna": "^6.1.0",
"luxon": "^3.2.1",
"moment": "^2.29.1",
"semantic-release": "^17.4.4",
"semantic-release-config-logdna": "^1.3.0",
"tap": "^16.3.0",
"tap-parser": "^11.0.1",
"tap-xunit": "^2.4.1"
},
"tap": {
"100": true,
"ts": false,
"jsx": false,
"browser": false,
"reporter": "tap",
"output-file": ".tap",
"check-coverage": true,
"files": [
"test/unit/",
"test/integration/"
],
"coverage-report": [
"text",
"text-summary",
"json",
"json-summary",
"html"
],
"nyc-arg": [
"--exclude=test/",
"--exclude=coverage/",
"--exclude=scripts/",
"--all"
]
},
"dependencies": {
"@logdna/stdlib": "^1.1.5",
"chevrotain": "^10.3.0"
}
}