-
Notifications
You must be signed in to change notification settings - Fork 17
/
package.json
60 lines (60 loc) · 1.54 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
{
"author": "PayPay OPA SDK",
"name": "@paypayopa/paypayopa-sdk-node",
"version": "0.0.0",
"description": "Node.js SDK for PayPay APIs",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"repository": {
"type": "git",
"url": "git+https://github.com/paypay/paypayopa-sdk-node.git"
},
"scripts": {
"build": "tsc",
"prepublishOnly": "npm run build",
"test": "jest",
"coverage": "jest --coverage",
"clean": "rm -rf ./.nyc_output ./node_modules/.cache ./coverage",
"lint": "eslint --ext .js,.jsx,.ts .",
"report": "nyc -r text -r lcov report"
},
"keywords": [
"PayPay",
"SDK",
"Node.js"
],
"license": "Apache-2.0",
"dependencies": {
"crypto-js": "^4.1.1",
"jsonwebtoken": "^8.5.1",
"uuid": "^8.3.0"
},
"engines": {
"node": ">=8.0.0",
"npm": ">=5.0.0"
},
"devDependencies": {
"@types/crypto-js": "^4.0.0",
"@types/jest": "^27.0.2",
"@types/jsonwebtoken": "^8.5.0",
"@types/node": "^17.0.8",
"@types/uuid": "^8.3.0",
"@typescript-eslint/eslint-plugin": "^5.6.0",
"@typescript-eslint/parser": "^5.6.0",
"eslint": "^8.2.0",
"eslint-config-prettier": "^8.0.0",
"eslint-plugin-chai-friendly": "^0.7.1",
"eslint-plugin-prettier": "^4.0.0",
"jest": "^27.3.1",
"nyc": "^15.1.0",
"ts-jest": "^27.0.7",
"typescript": "^4.0.2"
},
"directories": {
"doc": "docs"
},
"bugs": {
"url": "https://github.com/paypay/paypayopa-sdk-node/issues"
},
"homepage": "https://github.com/paypay/paypayopa-sdk-node#readme"
}