forked from pepabo/gmopg
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
100 lines (100 loc) · 2.31 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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
{
"name": "@cynack/gmopg",
"description": "GMO PaymentGateway API client",
"version": "6.4.2",
"author": "Futahei",
"license": "MIT",
"repository": {
"type": "git",
"url": "git://github.com/cynack/gmopg.git"
},
"publishConfig": {
"registry": "https://npm.pkg.github.com/"
},
"homepage": "https://github.com/cynack/gmopg",
"keywords": [
"api",
"client",
"payment",
"gmo"
],
"bugs": "https://github.com/cynack/gmopg/issues",
"main": "./lib/gmopg.js",
"types": "./lib/gmopg.d.ts",
"files": [
"MIT-LICENSE",
"README.md",
"lib/",
"error-codes.json"
],
"directories": {
"lib": "./lib",
"src": "./src"
},
"dependencies": {
"encoding-japanese": "^1.0.30",
"fs": "0.0.1-security",
"node-fetch": "^2.6.5",
"qs": "^6.9.0"
},
"devDependencies": {
"@types/encoding-japanese": "^1.0.17",
"@types/nock": "^11.1.0",
"@types/node": "^12.20.28",
"@types/node-fetch": "^2.5.2",
"@types/qs": "^6.5.1",
"@types/sinon": "^7.5.0",
"@typescript-eslint/eslint-plugin": "^3.7.1",
"@typescript-eslint/parser": "^3.7.1",
"ava": "^3.11.0",
"codecov": "^3.7.2",
"eslint": "^7.5.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-jsdoc": "^30.0.3",
"eslint-plugin-no-null": "^1.0.2",
"eslint-plugin-prefer-arrow": "^1.2.2",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-unicorn": "^21.0.0",
"nock": "^11.4.0",
"nyc": "^15.1.0",
"prettier": "^2.4.1",
"sinon": "^7.5.0",
"ts-node": "^8.4.1",
"tslint": "^6.1.3",
"typescript": "^3.6.3"
},
"engines": {
"node": ">=10"
},
"ava": {
"extensions": [
"ts"
],
"require": [
"ts-node/register"
],
"files": [
"src/**/*.test.ts"
],
"serial": true
},
"nyc": {
"extension": [
".ts"
],
"exclude": [
"src/**/*.test.ts"
]
},
"scripts": {
"build": "tsc",
"clean": "rm -rf lib package-lock.json",
"ci": "npm run clean && npm i && npm run lint:fix && npm run cov && npm audit && npm run cov:report",
"test": "ava -v",
"cov": "nyc npm test",
"cov:report": "nyc report --reporter=text-lcov > coverage.lcov",
"lint": "eslint src/**/*.ts",
"lint:fix": "eslint --fix src/**/*.ts"
}
}