forked from stripe/stripe-node
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 994 Bytes
/
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
{
"name": "stripe",
"version": "3.5.0",
"description": "Stripe API wrapper",
"keywords": [
"stripe",
"payment processing",
"credit cards",
"api"
],
"homepage": "https://github.com/stripe/stripe-node",
"author": "Stripe <[email protected]> (https://stripe.com/)",
"contributors": [
"Ask Bjørn Hansen <[email protected]> (http://www.askask.com/)",
"Michelle Bu <[email protected]>",
"Alex Sexton <[email protected]>",
"James Padolsey <[email protected]>"
],
"repository": {
"type": "git",
"url": "git://github.com/stripe/stripe-node.git"
},
"bugs:": "https://github.com/stripe/stripe-node/issues",
"engines": {
"node": ">= v0.10.0"
},
"main": "lib/stripe.js",
"devDependencies": {
"chai": "~1.10.0",
"chai-as-promised": "~4.1.1",
"mocha": "~2.1.0"
},
"dependencies": {
"bluebird": "^2.9.6",
"qs": "^2.3.3",
"lodash": "^3.1.0"
},
"license": "MIT",
"scripts": {
"test": "mocha"
}
}