-
-
Notifications
You must be signed in to change notification settings - Fork 38
/
package.json
49 lines (49 loc) · 1.56 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
{
"name": "api-server",
"version": "1.0.0",
"description": "The new API server for api.cdnjs.com",
"private": true,
"type": "module",
"main": "src/index.js",
"scripts": {
"test": "npm run test:echint && npm run test:eslint && npm run test:mocha",
"test:echint": "echint -v -i \"dist-worker/**/*\"",
"test:eslint": "eslint \"{,src/**/}*.@(js|cjs|mjs)\"",
"test:eslint:fix": "npm run test:eslint -- --fix",
"test:mocha": "npm run test:mocha:build && mocha",
"test:mocha:build": "wrangler deploy --dry-run --outdir dist-worker",
"dev": "wrangler dev"
},
"repository": {
"type": "git",
"url": "git+https://github.com/cdnjs/api-server.git"
},
"author": "cdnjs",
"license": "MIT",
"bugs": {
"url": "https://github.com/cdnjs/api-server/issues"
},
"homepage": "https://github.com/cdnjs/api-server#readme",
"dependencies": {
"@sentry/integrations": "^7.92.0",
"algoliasearch": "^4.22.0",
"hono": "^4.6.5",
"is-deflate": "^1.0.0",
"is-gzip": "^2.0.0",
"pako": "^2.1.0",
"toucan-js": "^3.3.1"
},
"devDependencies": {
"@babel/core": "^7.23.7",
"@babel/eslint-parser": "^7.23.3",
"chai": "^5.0.0",
"chai-http": "^4.4.0",
"echint": "^4.0.2",
"eslint": "^8.56.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jsdoc": "^48.0.2",
"miniflare": "^3.20231218.1",
"mocha": "^10.2.0",
"wrangler": "^3.22.3"
}
}