-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
50 lines (50 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
50
{
"name": "tikkie-checkout",
"description": "TypeScript implementation of the Tikkie Fast Checkout API.",
"version": "1.0.10",
"license": "MIT",
"author": "Toon van Strijp <toonvanstrijp@gmail.com> (https://www.toonvanstrijp.com)",
"repository": "github:ToonvanStrijp/node-tikkie-checkout",
"homepage": "https://github.com/ToonvanStrijp/node-tikkie-checkout",
"bugs": {
"url": "https://github.com/ToonvanStrijp/node-tikkie-checkout/issues",
"email": "toonvanstrijp@gmail.com"
},
"keywords": [
"tikkie",
"api",
"payment",
"checkout",
"request"
],
"main": "./lib/index.js",
"types": "./lib/index.d.ts",
"files": [
"lib/",
"LICENSE.md",
"README.md"
],
"scripts": {
"lint": "eslint src/*.ts src/**/*.ts",
"clean": "rimraf lib",
"build": "npm run clean && npm run lint && npm run build:lib",
"build:lib": "tsc -p tsconfig.build.json",
"prepublish": "npm run build"
},
"dependencies": {
"node-fetch": "^2.6.0",
"query-string": "^6.9.0",
"typescript": "^3.3.3"
},
"devDependencies": {
"@types/node": "^13.1.1",
"@types/node-fetch": "^2.5.4",
"@types/query-string": "^6.3.0",
"@typescript-eslint/eslint-plugin": "^2.21.0",
"@typescript-eslint/parser": "^2.21.0",
"eslint": "^6.8.0",
"rimraf": "^3.0.0",
"ts-node": "^8.0.2",
"tsconfig-paths": "^3.8.0"
}
}