-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 999 Bytes
/
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
{
"name": "tp-apis",
"version": "0.7.14",
"description": "toss web api wrapper (unofficial)",
"main": "dist/index",
"types": "dist/index.d.ts",
"source": "src/index",
"files": [
"dist"
],
"scripts": {
"test": "jest",
"test-clean": "rm -rf ./.cache",
"build": "tsc"
},
"author": "",
"license": "ISC",
"dependencies": {
"axios": "^1.7.5",
"jose": "^5.9.3",
"uuid": "^10.0.0"
},
"devDependencies": {
"@types/jest": "^27.0.3",
"@types/level": "^6.0.0",
"@types/node": "^16.11.11",
"@types/uuid": "^10.0.0",
"dotenv": "^10.0.0",
"jest": "^27.4.3",
"level": "^7.0.1",
"ts-jest": "^27.0.7"
},
"jest": {
"transform": {
"^.+\\.ts$": "ts-jest"
},
"testRegex": "\\.test\\.ts$",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"json"
],
"setupFiles": [
"dotenv/config"
],
"globals": {
"ts-jest": {
"diagnostics": true
}
}
}
}