-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
53 lines (53 loc) · 1.47 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
{
"name": "@sagi.io/workers-slack",
"version": "0.0.58",
"description": "Slack API for Cloudflare Workers",
"main": "dist/main.js",
"author": "Sagi Kedmi <[email protected]> (https://sagi.io)",
"homepage": "https://sagi.io",
"license": "MIT",
"private": false,
"scripts": {
"build:babel": "babel --ignore '**/*.test.js' src -d lib --verbose",
"build:webpack": "webpack ./lib",
"build": "yarn build:babel && yarn build:webpack",
"bump:push": "yarn version --patch && git push origin master --follow-tags",
"lint": "eslint ./src",
"test": "jest",
"prepublishOnly": "yarn build && yarn lint && yarn test && yarn bump:push"
},
"dependencies": {
"@sagi.io/globalthis": "^0.0.2",
"lodash.merge": "^4.6.1"
},
"devDependencies": {
"@babel/cli": "^7.24.1",
"@babel/core": "^7.24.4",
"@babel/eslint-parser": "^7.19.1",
"@babel/preset-env": "^7.24.4",
"coveralls": "^3.1.1",
"cross-fetch": "^4.0.0",
"eslint": "^8.0.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-jest": "^28.2.0",
"eslint-plugin-prettier": "^5.1.3",
"jest": "^29.7.0",
"jest-junit": "^16.0.0",
"lodash.get": "^4.4.2",
"mockdate": "^3.0.5",
"prettier": "^3.2.5",
"webpack": "^5.91.0",
"webpack-cli": "^5.1.4"
},
"repository": {
"type": "git",
"url": "https://github.com/sagi/workers-slack.git"
},
"keywords": [
"cloudflare",
"workers",
"cloudflare workers",
"slack",
"rest"
]
}