-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
52 lines (52 loc) · 1.48 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
{
"name": "cloudflare-worker-twitter",
"version": "1.0.0",
"description": "This is a Cloudflare Worker for fetching data from Twitter User API.",
"main": "dist/worker.js",
"scripts": {
"build": "webpack",
"format": "prettier --write '*.{json,js}' 'src/**/*.{js,ts}' 'test/**/*.{js,ts}'",
"lint": "eslint --max-warnings=0 src && prettier --check '*.{json,js}' 'src/**/*.{js,ts}' 'test/**/*.{js,ts}'"
},
"author": "ardasoyturk",
"license": "MIT",
"eslintConfig": {
"root": true,
"extends": [
"typescript",
"prettier"
]
},
"devDependencies": {
"@cloudflare/workers-types": "^2.2.2",
"@types/service-worker-mock": "^2.0.1",
"@typescript-eslint/eslint-plugin": "^4.16.1",
"@typescript-eslint/parser": "^4.16.1",
"eslint": "^7.21.0",
"eslint-config-prettier": "^8.1.0",
"eslint-config-typescript": "^3.0.0",
"jest": "^27.0.1",
"prettier": "^2.3.0",
"service-worker-mock": "^2.0.5",
"ts-loader": "^9.2.2",
"typescript": "^4.3.2",
"webpack": "^5.38.1",
"webpack-cli": "^4.7.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ardasoyturk/cloudflare-worker-twitter.git"
},
"keywords": [
"cloudflare",
"cloudflare workers",
"workers",
"twitter",
"twitter api",
"nodejs"
],
"bugs": {
"url": "https://github.com/ardasoyturk/cloudflare-worker-twitter/issues"
},
"homepage": "https://github.com/ardasoyturk/cloudflare-worker-twitter#readme"
}