-
Notifications
You must be signed in to change notification settings - Fork 19
/
package.json
80 lines (80 loc) · 2.19 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
{
"name": "@octokit/fixtures",
"version": "0.0.0-development",
"publishConfig": {
"access": "public",
"provenance": true
},
"description": "Fixtures for all the octokittens",
"main": "index.js",
"type": "module",
"files": [
"index.js",
"bin",
"lib",
"scenarios"
],
"scripts": {
"coverage": "tap --coverage-report=html",
"record": "bin/record.js",
"pretest": "npm run -s lint",
"lint": "prettier --check '{bin,lib,scenarios,test}/**/*.{js,json}' index.js README.md package.json",
"lint:fix": "prettier --write '{bin,lib,scenarios,test}/**/*.{js,json}' index.js README.md package.json",
"test": "NODE_OPTIONS=--experimental-vm-modules npx jest --coverage 'scenarios/.*/test.js' 'test/.*/.*.test.js'",
"test:unit": "NODE_OPTIONS=--experimental-vm-modules npx jest -i 'test/unit/.*/*.test.js'",
"test:integration": "NODE_OPTIONS=--experimental-vm-modules npx jest -i 'test/integration/.*/*.test.js'",
"test:scenarios": "NODE_OPTIONS=--experimental-vm-modules npx jest -i 'scenarios/.*/test.js'",
"semantic-release": "semantic-release"
},
"repository": "github:octokit/fixtures",
"keywords": [],
"author": "Gregor Martynus (https://twitter.com/gr2m)",
"license": "MIT",
"dependencies": {
"json-diff": "^1.0.0",
"lodash": "^4.17.11",
"nock": "^13.0.0",
"url-template": "^3.0.0"
},
"devDependencies": {
"@types/jest": "^29.0.0",
"axios": "^1.0.0",
"axios-debug-log": "^1.0.0",
"bottleneck": "^2.12.0",
"chalk": "^5.0.0",
"envalid": "^8.0.0",
"get-stream": "^9.0.0",
"glob": "^11.0.0",
"gunzip-maybe": "^1.4.1",
"humanize-string": "^3.0.0",
"into-stream": "^8.0.0",
"jest": "^29.0.0",
"minimist": "^1.2.5",
"mkdirp": "^3.0.0",
"prettier": "3.4.2",
"proxyquire": "^2.1.0",
"semantic-release": "^24.0.0",
"tar-stream": "^3.0.0"
},
"release": {
"branches": [
"+([0-9]).x",
"main",
"next",
{
"name": "beta",
"prerelease": true
}
]
},
"jest": {
"coverageThreshold": {
"global": {
"branches": 100,
"functions": 100,
"lines": 100,
"statements": 100
}
}
}
}