-
Notifications
You must be signed in to change notification settings - Fork 756
/
package.json
67 lines (67 loc) · 1.96 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
{
"name": "stripe",
"version": "9.16.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"
],
"repository": {
"type": "git",
"url": "git://github.com/stripe/stripe-node.git"
},
"bugs": "https://github.com/stripe/stripe-node/issues",
"engines": {
"node": "^8.1 || >=10.*"
},
"main": "lib/stripe.js",
"types": "types/2020-08-27/index.d.ts",
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^2.13.0",
"@typescript-eslint/parser": "^2.13.0",
"chai": "~4.2.0",
"chai-as-promised": "~7.1.1",
"eslint": "^6.8.0",
"eslint-config-prettier": "^4.1.0",
"eslint-plugin-chai-friendly": "^0.4.0",
"eslint-plugin-prettier": "^3.0.1",
"mocha": "^8.3.2",
"mocha-junit-reporter": "^1.23.1",
"nock": "^13.1.1",
"node-fetch": "^2.6.2",
"nyc": "^15.1.0",
"prettier": "^1.16.4",
"typescript": "^3.7.2"
},
"resolutions": {
"ansi-regex": "5.0.1",
"minimist": "1.2.6",
"nanoid": "3.2.0"
},
"dependencies": {
"@types/node": ">=8.1.0",
"qs": "^6.10.3"
},
"license": "MIT",
"scripts": {
"clean": "rm -rf ./.nyc_output ./node_modules/.cache ./coverage",
"mocha": "nyc mocha --config=test/.mocharc.js",
"mocha-only": "mocha --config=test/.mocharc.js",
"test": "yarn test-typescript && yarn mocha",
"test-typescript": "tsc --build types/test",
"lint": "eslint --ext .js,.jsx,.ts .",
"fix": "yarn lint --fix && ./scripts/updateAPIVersion.js",
"report": "nyc -r text -r lcov report",
"coveralls": "cat coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js"
}
}