forked from ayshptk/msngr
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
53 lines (53 loc) · 1.38 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": "@metapasshq/msngr",
"version": "0.1.4",
"description": "a tiny utility to post to user-provided webhooks without worrying about platforms built for [@metapass](https://github.com/metapass)",
"main": "lib/index.js",
"scripts": {
"build": "tsc",
"lint": "eslint . --ext .ts",
"test": "jest --config jestconfig.json"
},
"repository": {
"type": "git",
"url": "git+https://github.com/metapass/msngr.git"
},
"files": [
"lib/**/*"
],
"keywords": [
"webhooks"
],
"publishConfig": {
"registry": "https://registry.npmjs.org/"
},
"author": "Anoushk Kharangate",
"license": "MIT",
"bugs": {
"url": "https://github.com/metapass/msngr/issues"
},
"homepage": "https://github.com/metapass/msngr#readme",
"devDependencies": {
"@types/jest": "^27.4.0",
"@types/node": "^16.11.6",
"@types/node-fetch": "^3.0.3",
"@typescript-eslint/eslint-plugin": "^5.3.0",
"@typescript-eslint/parser": "^5.3.0",
"eslint": "^8.2.0",
"eslint-config-prettier": "^8.3.0",
"eslint-config-standard": "^16.0.3",
"eslint-plugin-import": "^2.25.2",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^5.1.1",
"jest": "^27.3.1",
"ts-jest": "^27.0.7",
"typescript": "^4.4.4"
},
"dependencies": {
"node-fetch": "2.6.7"
},
"types": "./lib/index.d.ts",
"directories": {
"lib": "lib"
}
}