-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
82 lines (82 loc) · 1.93 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
{
"name": "portone-api-v2",
"version": "0.0.4",
"description": "PortOne REST API v2",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"scripts": {
"build": "tsc",
"start": "node -r tsconfig-paths/register dist/index.js",
"lint": "eslint \"{src,test}/**/*.ts\" --fix",
"lint:ci": "eslint \"{src,test}/**/*.ts\"",
"test": "jest",
"test:watch": "jest --watch",
"test:cov": "jest --coverage",
"test:debug": "node --inspect-brk -r tsconfig-paths/register -r ts-node/register node_modules/.bin/jest --runInBand",
"prepare": "husky install"
},
"keywords": [
"portone",
"iamport"
],
"files": [
"lib",
"package.json",
"README.md"
],
"author": "ninthsun91",
"repository": {
"type": "git",
"url": "https://github.com/ninthsun91/portone-api-v2"
},
"license": "MIT",
"devDependencies": {
"@ninthsun91/eslint-config": "^1.2.0",
"@types/jest": "^29.5.11",
"@types/jsonwebtoken": "^9.0.6",
"@types/lodash": "^4.17.0",
"@types/node": "^20.11.5",
"@types/qs": "^6.9.14",
"eslint": "^8.56.0",
"husky": "^8.0.0",
"jest": "^29.7.0",
"lint-staged": "^15.2.0",
"ts-jest": "^29.1.1",
"tsconfig-paths": "^4.2.0",
"typescript": "^5.3.3"
},
"jest": {
"moduleFileExtensions": [
"js",
"json",
"ts"
],
"rootDir": "src",
"testRegex": ".*\\.spec\\.ts$",
"testPathIgnorePatterns": [
"/node_modules/",
"/coverage/",
"/dist/"
],
"transform": {
"^.+\\.(t|j)s$": "ts-jest"
},
"collectCoverageFrom": [
"**/*.(t|j)s"
],
"coverageDirectory": "../coverage",
"coveragePathIgnorePatterns": [],
"testEnvironment": "node",
"moduleNameMapper": {}
},
"lint-staged": {
"{src,test}/**/*.ts": []
},
"dependencies": {
"axios": "^1.6.8",
"country-code-enum": "^1.0.5",
"jsonwebtoken": "^9.0.2",
"lodash": "^4.17.21",
"qs": "^6.12.0"
}
}