-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
55 lines (55 loc) · 1.21 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
{
"name": "mini-apiclient",
"version": "0.0.5",
"description": "Simple Rest API client for node application",
"main": "dist/api-client.js",
"types": "dist/api-client.d.ts",
"files": [
"dist"
],
"scripts": {
"prepublishOnly": "tsc",
"test": "jest",
"build": "tsc"
},
"repository": {
"type": "git",
"url": "git+https://github.com/shotastage/simple-apiclient.git"
},
"author": "Shota Shimazu <hornet.live.mf@gmail.com> (https://folio.digital-nichan.com/)",
"license": "MIT",
"bugs": {
"url": "https://github.com/shotastage/simple-apiclient/issues"
},
"jest": {
"moduleNameMapper": {
"^#/(.+)": "<rootDir>/src/$1"
},
"moduleFileExtensions": [
"ts",
"js"
],
"transform": {
"^.+\\.ts$": "ts-jest"
},
"globals": {
"ts-jest": {
"tsConfig": "tsconfig.json"
}
},
"testMatch": [
"**/tests/**/*.test.ts"
]
},
"homepage": "https://github.com/shotastage/simple-apiclient#readme",
"devDependencies": {
"@types/jest": "^27.4.1",
"jest": "^28.0.3",
"ts-jest": "^27.1.4",
"ts-node": "^10.7.0"
},
"dependencies": {
"@types/node": "^17.0.31",
"typescript": "^4.6.4"
}
}