-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
57 lines (57 loc) · 1.55 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
{
"name": "fastify-stripe",
"version": "2.4.1",
"description": "Stripe Node.js Library instance initialization and encapsulation in fastify framework",
"main": "plugin.js",
"types": "plugin.d.ts",
"scripts": {
"lint": "standard --verbose",
"lint:fix": "standard --fix",
"test": "npm run lint && npm run unit && npm run test:typescript",
"test:ci": "npm run unit:coverage && npm run test:typescript",
"test:typescript": "tsd",
"unit": "tap -J test/plugin.test.js",
"unit:coverage": "npm run unit -- --cov --coverage-report=lcovonly --no-browser",
"unit:report": "npm run unit -- --cov --coverage-report=html",
"unit:verbose": "npm run unit -- -Rspec"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/coopflow/fastify-stripe.git"
},
"keywords": [
"credit-cards",
"fastify",
"fastify-plugin",
"payment-processing",
"stripe"
],
"author": "Jean-Michel Coghe <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/coopflow/fastify-stripe/issues"
},
"homepage": "https://github.com/coopflow/fastify-stripe#readme",
"engines": {
"node": ">=10"
},
"dependencies": {
"fastify-plugin": "^3.0.1"
},
"devDependencies": {
"coveralls": "^3.1.1",
"dotenv": "^16.0.0",
"fastify": "^3.27.2",
"standard": "^16.0.4",
"stripe": "^8.207.0",
"tap": "^15.1.6",
"tsd": "^0.19.1",
"typescript": "^4.6.2"
},
"peerDependencies": {
"stripe": ">=8.0.0"
},
"tsd": {
"directory": "test/types"
}
}