-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
80 lines (80 loc) · 2.11 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
{
"name": "@nestjs-packages/ncp-sens",
"version": "1.1.0",
"description": "NCP SENS Client module for Nest.js",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"repository": {
"type": "git",
"url": "git+https://github.com/nestjs-packages/ncp-sens.git"
},
"keywords": [
"nestjs",
"sens",
"naver",
"sms",
"kakaotalk",
"alimtalk"
],
"author": "greatSumini <[email protected]> (https://sumini.dev)",
"license": "MIT",
"bugs": {
"url": "https://github.com/nestjs-packages/ncp-sens/issues"
},
"homepage": "https://github.com/nestjs-packages/ncp-sens#readme",
"scripts": {
"build": "rimraf -rf dist && tsc -p tsconfig.json",
"lint": "eslint \"lib/**/*.ts\" --fix",
"type-check": "tsc --noEmit",
"prepublish:next": "npm run build",
"publish:next": "npm publish --access public --tag next",
"prepublish:npm": "npm run lint && npm run build",
"publish:npm": "npm publish --access public",
"prerelease": "npm run build",
"test": "jest",
"test:watch": "jest --watch",
"coverage": "jest --coverage",
"coveralls": "npm run coverage --coverageReporters=text-lcov | coveralls"
},
"peerDependencies": {
"@nestjs/common": "*",
"@nestjs/core": "*",
"reflect-metadata": "*",
"rxjs": "*"
},
"dependencies": {
"@pickk/sens": "^1.1.0"
},
"devDependencies": {
"@nestjs/common": "10.4.8",
"@nestjs/core": "10.4.8",
"@nestjs/testing": "10.4.8",
"@types/jest": "28.1.8",
"@types/node": "22.9.1",
"@typescript-eslint/eslint-plugin": "5.62.0",
"@typescript-eslint/parser": "5.62.0",
"coveralls": "3.1.1",
"eslint": "8.57.1",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-import": "2.31.0",
"jest": "28.1.3",
"prettier": "3.3.3",
"reflect-metadata": "0.2.2",
"rxjs": "7.8.1",
"ts-jest": "28.0.8",
"typescript": "5.0.4"
},
"jest": {
"moduleFileExtensions": [
"js",
"json",
"ts"
],
"rootDir": ".",
"testRegex": ".spec.ts$",
"transform": {
"^.+\\.(t|j)s$": "ts-jest"
},
"coverageDirectory": "./coverage"
}
}