-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
51 lines (51 loc) · 1.65 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
{
"name": "@sharks-interactive/workers-firebase-rtdb-rest-client",
"version": "1.1.0",
"description": "Firebase RTDB Client for CloudFlare Workers.",
"main": "dist/index.cjs.js",
"module": "dist/index.esm.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "rollup -c",
"dev": "rollup -c -w",
"test": "test/",
"format": "prettier --write src/index.ts",
"lint-fix": "eslint . --ext .ts --fix"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Sharks-Interactive/workers-firebase-rtdb-rest-client.git"
},
"keywords": [
"library",
"javascript",
"Cloudflare-Workers",
"Firebase-RTDB"
],
"author": "Sharks Interactive <support@sharksinteractive.net>",
"license": "ISC",
"devDependencies": {
"@cloudflare/workers-types": "^2.2.2",
"@rollup/plugin-commonjs": "20.0.0",
"@rollup/plugin-node-resolve": "13.0.4",
"@rollup/plugin-replace": "3.0.0",
"@typescript-eslint/eslint-plugin": "^4.31.0",
"@typescript-eslint/parser": "^4.31.0",
"eslint": "^7.32.0",
"eslint-config-google": "^0.14.0",
"prettier": "1.19.1",
"prettier-eslint": "^12.0.0",
"rollup": "2.56.2",
"rollup-plugin-typescript2": "0.30.0",
"typescript": "4.3.5"
},
"bugs": {
"url": "https://github.com/Sharks-Interactive/workers-firebase-rtdb-rest-client/issues"
},
"homepage": "https://github.com/Sharks-Interactive/workers-firebase-rtdb-rest-client#readme",
"files": [
"dist",
"LICENSE.txt",
"README.md"
]
}