-
Notifications
You must be signed in to change notification settings - Fork 15
/
package.json
88 lines (88 loc) · 2.24 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
{
"name": "@octokit/fixtures-server",
"version": "0.0.0-development",
"publishConfig": {
"access": "public",
"provenance": true
},
"description": "Fixtures server for browser & language agnositic octokit testing",
"main": "index.js",
"type": "module",
"bin": {
"octokit-fixtures-server": "bin/server.js"
},
"files": [
"index.js",
"bin",
"lib"
],
"scripts": {
"coverage": "tap --coverage-report=html",
"start": "node bin/server.js",
"lint": "prettier --check '{bin,lib,scripts,test}/**/*.{js,json}' index.js README.md package.json",
"lint:fix": "prettier --write '{bin,lib,scripts,test}/**/*.{js,json}' index.js README.md package.json",
"pretest": "npm run -s lint",
"test": "npm run test:integration && npm run test:unit",
"test:integration": "uvu test/integration",
"test:unit": "uvu test/unit",
"test:e2e": "npm run test:e2e:smoke && npm run test:e2e:custom-fixtures",
"test:e2e:smoke": "test/end-to-end/smoke-test.sh",
"test:e2e:custom-fixtures": "test/end-to-end/custom-fixtures-test.sh"
},
"repository": "github:octokit/fixtures-server",
"keywords": [],
"author": "Gregor Martynus (https://twitter.com/gr2m)",
"license": "MIT",
"dependencies": {
"@octokit/fixtures": "23.1.1",
"cachimo": "^2.0.1",
"console-log-level": "^1.4.0",
"cors": "^2.8.4",
"express": "^4.16.3",
"glob": "^10.0.0",
"http-proxy-middleware": "^2.0.0",
"lodash": "^4.17.10",
"yargs": "^17.0.0"
},
"devDependencies": {
"caxa": "^3.0.0",
"prettier": "^3.0.0",
"semantic-release": "^24.0.0",
"supertest": "^7.0.0",
"uvu": "^0.5.1"
},
"release": {
"branches": [
"+([0-9]).x",
"main",
"next",
{
"name": "beta",
"prerelease": true
}
],
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
"@semantic-release/npm",
[
"@semantic-release/github",
{
"path": "@semantic-release/github",
"assets": [
"dist/*"
]
}
]
]
},
"now": {
"alias": "octokit-fixtures",
"env": {
"NODE_ENV": "production"
}
},
"engines": {
"node": ">=18"
}
}