-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
67 lines (67 loc) · 1.77 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
{
"name": "nestjs-alicloud-sms",
"version": "1.0.1",
"description": "An Alicloud short message service (SMS) module for NestJS framework (node.js)",
"license": "MIT",
"author": "Zhou Zhenzhou([email protected])",
"keywords": [
"NestJS",
"Alicloud",
"short message",
"SMS",
"nodejs"
],
"main": "./dist/index.js",
"scripts": {
"test": "jest",
"prebuild": "rimraf dist",
"build": "npm run prebuild && tsc -p tsconfig.json",
"major": "npm run release -- --release-as major",
"minor": "npm run release -- --release-as minor",
"patch": "npm run release -- --release-as patch",
"release": "standard-version",
"publish:npm": "npm run build && npm publish --access public"
},
"dependencies": {
"@alicloud/pop-core": "^1.7.9"
},
"peerDependencies": {
"@nestjs/common": "^6.0.0",
"@nestjs/core": "^6.0.0"
},
"devDependencies": {
"@nestjs/common": "7.1.3",
"@nestjs/core": "7.1.3",
"@types/jest": "^26.0.0",
"@types/node": "14.0.13",
"husky": "4.2.5",
"jest": "^26.0.1",
"lint-staged": "10.2.10",
"mock-stdin": "^1.0.0",
"prettier": "2.0.5",
"ts-jest": "^26.1.0",
"ts-morph": "7.1.1",
"reflect-metadata": "^0.1.13",
"rimraf": "3.0.2",
"standard-version": "8.0.1",
"@typescript-eslint/eslint-plugin": "3.2.0",
"@typescript-eslint/parser": "3.2.0",
"eslint": "7.2.0",
"eslint-config-prettier": "6.11.0",
"eslint-plugin-import": "2.21.2",
"typescript": "3.9.5"
},
"repository": {
"type": "git",
"url": "git+https://github.com/YuchenWell/nestjs-alicloud-sms.git"
},
"bugs": {
"url": "https://github.com/YuchenWell/nestjs-alicloud-sms/issues"
},
"lint-staged": {
"*.ts": [
"prettier --write",
"git add"
]
}
}