-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
85 lines (85 loc) · 1.82 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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
{
"name": "feathers-hubspot-webhooks",
"version": "1.1.3",
"description": "Handle HubSpot webhooks in a FeathersJS service",
"main": "./lib",
"files": [
"lib"
],
"directories": {
"lib": "lib"
},
"scripts": {
"compile": "rm -rf lib/ && $(npm bin)/babel -d lib/ src/",
"prepublish": "npm run compile",
"watch": "$(npm bin)/npm-watch",
"lint": "$(npm bin)/eslint src/ test/ || true",
"tape": "$(npm bin)/babel-tape-runner test/ | $(npm bin)/tap-spec || true",
"test": "npm run lint && npm run tape"
},
"watch": {
"test": {
"patterns": [
"src/**/*.js",
"test/**/*.js"
],
"quiet": true
}
},
"homepage": "https://github.com/dekelev/feathers-hubspot-webhooks",
"repository": {
"type": "git",
"url": "https://github.com/dekelev/feathers-hubspot-webhooks.git"
},
"keywords": [
"feathers",
"hubspot",
"webhooks"
],
"author": {
"name": "Dekel Barzilay",
"email": "dekelev@gmail.com"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/dekelev/feathers-hubspot-webhooks/issues"
},
"engines": {
"node": ">= 14"
},
"dependencies": {
"body-parser": "^1.20.2",
"debug": "^4.3.4"
},
"peerDependencies": {
"feathers": "*"
},
"devDependencies": {
"@babel/cli": "^7.21.0",
"@babel/core": "^7.21.0",
"@babel/preset-env": "^7.20.2",
"babel-plugin-add-module-exports": "^1.0.4",
"babel-tape-runner": "^3.0.0",
"eslint": "^8.35.0",
"npm-watch": "^0.11.0",
"sinon": "^15.0.1",
"tap-spec": "^2.2.2",
"tape": "^5.6.3",
"tape-async": "^2.3.0"
},
"babel": {
"plugins": [
"add-module-exports"
],
"presets": [
[
"@babel/preset-env",
{
"targets": {
"node": "14"
}
}
]
]
}
}