forked from izatop/cloudpayments
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.78 KB
/
package.json
File metadata and controls
63 lines (63 loc) · 1.78 KB
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
{
"name": "cloudpayments",
"version": "5.0.1",
"description": "CloudPayments API for Node.js with typings",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"test": "jest",
"test:watch": "jest -w",
"lint": "eslint '{src,test}/**/*.ts'",
"build": "rimraf dist/* && tsc -p tsconfig.build.json",
"watch": "tsc -p tsconfig.build.json -w",
"prepublishOnly": "npm test",
"version": "git add -A",
"postversion": "git push && npm pub ./"
},
"publishConfig": {
"registry": "https://registry.npmjs.org"
},
"repository": {
"type": "git",
"url": "git+https://github.com/izatop/cloudpayments.git"
},
"keywords": [
"payments",
"cloudpayments",
"typescript",
"es6",
"api"
],
"author": "Artur F. Bier <izatop@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/izatop/cloudpayments/issues"
},
"homepage": "https://github.com/izatop/cloudpayments#readme",
"dependencies": {
"@types/node": "^14.0.27",
"@types/node-fetch": "^2.5.7",
"@types/object-hash": "^1.3.3",
"@types/qs": "^6.9.4",
"node-fetch": "^2.6.0",
"object-hash": "^2.0.1",
"qs": "^6.9.4"
},
"devDependencies": {
"@types/jest": "^26.0.7",
"@types/tape": "^4.13.0",
"@typescript-eslint/eslint-plugin": "^3.7.1",
"@typescript-eslint/parser": "^3.7.1",
"eslint": "^7.5.0",
"jest": "^26.2.1",
"rimraf": "^3.0.0",
"source-map-support": "^0.5.19",
"tape": "^5.0.1",
"ts-jest": "^26.1.4",
"ts-node": "^8.10.2",
"typescript": "^3.9.7"
}
}