forked from stripe/stripe-node
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
59 lines (59 loc) · 1.62 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
{
"name": "stripe",
"version": "7.5.0",
"description": "Stripe API wrapper",
"keywords": [
"stripe",
"payment processing",
"credit cards",
"api"
],
"homepage": "https://github.com/stripe/stripe-node",
"author": "Stripe <support@stripe.com> (https://stripe.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"
],
"repository": {
"type": "git",
"url": "git://github.com/stripe/stripe-node.git"
},
"bugs:": "https://github.com/stripe/stripe-node/issues",
"engines": {
"node": "^6 || ^8.1 || >=10.*"
},
"main": "lib/stripe.js",
"devDependencies": {
"babel-eslint": "^10.0.1",
"chai": "~4.2.0",
"chai-as-promised": "~7.1.1",
"coveralls": "^3.0.0",
"eslint": "^5.16.0",
"eslint-config-prettier": "^4.1.0",
"eslint-plugin-chai-friendly": "^0.4.0",
"eslint-plugin-flowtype": "^3.8.1",
"eslint-plugin-prettier": "^3.0.1",
"mocha": "~6.1.4",
"nock": "^10.0.6",
"nyc": "^14.1.0",
"prettier": "^1.16.4"
},
"dependencies": {
"lodash.isplainobject": "^4.0.6",
"qs": "^6.6.0",
"uuid": "^3.3.2"
},
"license": "MIT",
"scripts": {
"clean": "rm -rf ./.nyc_output ./node_modules/.cache ./coverage",
"mocha": "nyc mocha",
"mocha-only": "mocha",
"test": "npm run lint && npm run mocha",
"lint": "eslint --ext .js,.jsx .",
"fix": "yarn lint --fix",
"report": "nyc -r text -r lcov report",
"coveralls": "cat coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js"
}
}