-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 loc) · 1.11 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
{
"name": "stripe-local",
"version": "0.1.1",
"description": "For receiving Stripe webhooks locally",
"author": "Jason Maurer",
"license": "MIT",
"homepage": "https://github.com/jsonmaur/stripe-local#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/jsonmaur/stripe-local.git"
},
"keywords": [
"stripe",
"webhook",
"events",
"test",
"testing",
"local"
],
"files": [
"bin/",
"lib/",
"license",
"readme.md"
],
"main": "lib/index.js",
"bin": {
"stripe-local": "bin/stripe-local"
},
"scripts": {
"test:lint": "standard --verbose | snazzy",
"test": "npm-run-all test:*",
"build": "rm -rf lib && babel src -d lib --no-comments",
"watch": "npm run build -- -w",
"prepublish": "npm run build"
},
"devDependencies": {
"babel-cli": "6.11.4",
"babel-preset-es2015": "6.13.2",
"npm-run-all": "3.0.0",
"snazzy": "4.0.1",
"standard": "7.1.2"
},
"dependencies": {
"axios": "0.13.1",
"minimist": "1.2.0",
"stripe": "4.9.0"
},
"babel": {
"presets": [
"es2015"
]
}
}