This repository has been archived by the owner on Oct 4, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
66 lines (66 loc) · 1.84 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
{
"name": "l0-api",
"version": "1.0.1",
"description": "Cloudflare worker for re-routing API requests to L0 Services",
"main": "lib/index.js",
"type": "module",
"scripts": {
"start": "wrangler dev --local",
"build": "tsc --project tsconfig.build.json",
"format": "prettier --write \"src/**/*.{ts,js}\"",
"lint": "eslint --ignore-path .eslintignore --ext .js,.ts .",
"test": "jest --config jest.config.json",
"prepare": "npm run build",
"prepublishOnly": "npm test && npm run lint",
"preversion": "npm run lint",
"postversion": "npm run format",
"deploy": "wrangler publish",
"clean": "tsc --build --clean"
},
"repository": {
"type": "git",
"url": "https://github.com/tiki/l0-api"
},
"keywords": [
"TIKI",
"L0 Storage"
],
"author": {
"name": "Tiki inc.",
"email": "[email protected]",
"url": "https://mytiki.com"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/tiki/l0-api/issues"
},
"homepage": "https://github.com/tiki/l0-api#readme",
"devDependencies": {
"@babel/core": "^7.21.4",
"@babel/preset-env": "^7.21.4",
"@cloudflare/workers-types": "^4.20230321.0",
"@types/jest": "^29.5.0",
"@typescript-eslint/eslint-plugin": "^5.57.0",
"@typescript-eslint/parser": "^5.57.0",
"babel-jest": "^29.5.0",
"eslint": "^8.37.0",
"eslint-config-prettier": "^8.8.0",
"eslint-config-standard": "^17.0.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-jest": "^27.2.1",
"eslint-plugin-n": "^15.7.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-promise": "^6.1.1",
"jest": "^29.5.0",
"jest-junit": "^15.0.0",
"ts-jest": "^29.1.0",
"typescript": "^5.0.3",
"wrangler": "2.13.0"
},
"private": true,
"files": [
"dist/**/*"
],
"types": "dist/index.d.ts",
"dependencies": {}
}