This repository has been archived by the owner on Aug 10, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 16
/
package.json
72 lines (72 loc) · 1.91 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
{
"name": "hooka",
"version": "0.5.0",
"description": "A webhook server with zero coding",
"bin": "bin/index.js",
"main": "lib/server/index.js",
"engines": {
"node": ">=4.0.0"
},
"repository": {
"type": "git",
"url": "https://github.com/danistefanovic/hooka.git"
},
"scripts": {
"clean": "rimraf lib",
"build": "npm run clean && npm run build:lib",
"build:lib": "babel src/ -d lib/ --source-maps",
"build:watch": "npm run build:lib -- --watch",
"prepublish": "npm run build",
"test": "npm run test:all",
"test:all": "npm run test:lint && npm run test:unit",
"test:lint": "eslint .",
"test:unit": "jasmine JASMINE_CONFIG_PATH=test/jasmine.json",
"test:watch": "nodemon --exec npm run test:unit",
"preversion": "npm run build && npm run test:all",
"postversion": "git push && git push --tags"
},
"keywords": [
"webhook server",
"server",
"webhook",
"hooks",
"http",
"callback",
"endpoints"
],
"author": "Daniel Stefanovic",
"license": "MIT",
"devDependencies": {
"babel-cli": "6.4.0",
"babel-core": "6.4.0",
"babel-eslint": "5.0.0-beta10",
"babel-plugin-rewire": "1.0.0-beta-2",
"babel-preset-es2015": "6.3.13",
"babel-preset-stage-2": "6.3.13",
"babel-register": "6.3.13",
"babel-template": "6.3.13",
"babel-types": "6.4.1",
"eslint": "1.10.3",
"eslint-config-infektweb": "1.8.0",
"eslint-plugin-bdd": "1.1.1",
"eslint-plugin-react": "3.14.0",
"jasmine": "2.4.1",
"mock-spawn": "0.2.6",
"nodemon": "1.8.1",
"rimraf": "2.5.0",
"server-ready": "0.2.0",
"supertest": "1.1.0"
},
"dependencies": {
"babel-polyfill": "6.3.14",
"body-parser": "1.14.2",
"chalk": "1.1.1",
"express": "4.13.3",
"joi": "7.1.0",
"lodash": "4.0.0",
"methods": "1.1.2",
"source-map-support": "0.4.0",
"untildify": "3.0.2",
"yargs": "3.31.0"
}
}