forked from Skrumble/fusebill-node
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.36 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
{
"name": "fusebill-node",
"version": "1.1.4",
"description": "Fusebill API wrapper",
"keywords": [
"fuesbill",
"payment processing",
"credit cards",
"api",
"subscriptions"
],
"homepage": "http://git.skrumble.local/nu-modules/fusebill-node.git",
"author": "Michael Dabydeen <michael@skrumble.com> (http://skrumble.com)",
"contributors": [
"Ask Bjørn Hansen <ask@develooper.com> (http://www.askask.com/)",
"Michelle Bu <michelle@stripe.com>",
"Alex Sexton <alex@stripe.com>",
"James Padolsey",
"Justin Hamade <justin@fingerfoodstudios.com> (https://fingerfoodstudios.com/)",
"Michael Dabydeen<michael@skrumble.com> (http://www.skrumble.com)"
],
"repository": {
"type": "ssh",
"url": "ssh://git@git.skrumble.local:12777/nu-modules/fusebill-node.git"
},
"private": true,
"bugs:": "http://jira.skrumble.local:8080/secure/RapidBoard.jspa?rapidView=6&projectKey=SKRUM&view=detail",
"engines": {
"node": ">= v0.12.0"
},
"main": "lib/fusebill.js",
"devDependencies": {
"chai": "~1.10.0",
"chai-as-promised": "~4.1.1",
"jscs": "^2.3.5",
"mocha": "~2.1.0",
"stripe-javascript-style": "^1.0.1"
},
"dependencies": {
"bluebird": "^2.10.2",
"lodash": "^4.11.1",
"qs": "^2.4.2"
},
"license": "MIT",
"scripts": {
"test": "npm run lint && mocha",
"lint": "jscs ."
}
}