-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
47 lines (47 loc) · 1.34 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
{
"name": "cmq-nodejs-sdk",
"version": "1.0.11",
"description": "Tencent cloud cmq sdk of nodejs",
"main": "dist/index.js",
"scripts": {
"build": "tsc",
"format": "prettier --write \"src/**/*.ts\"",
"start": "ts-node -r tsconfig-paths/register src/main.ts",
"start:dev": "nodemon",
"start:debug": "nodemon --config nodemon-debug.json",
"prestart:prod": "rimraf dist && tsc",
"start:prod": "node dist/main.js",
"lint": "tslint -p tsconfig.json -c tslint.json",
"test": "jest",
"test:watch": "jest --watch",
"test:cov": "jest --coverage",
"test:e2e": "jest --config ./test/jest-e2e.json"
},
"author": "",
"license": "MIT",
"homepage": "https://github.com/DivXPro/cmq-nodejs-sdk",
"keywords": ["Tencent", "CMQ", "SDK"],
"repository": {
"type": "git",
"url": "git+https://github.com/DivXPro/cmq-nodejs-sdk"
},
"dependencies": {
"axios": "^0.18.0"
},
"devDependencies": {
"@types/axios": "^0.14.0",
"@types/jest": "^23.3.13",
"@types/node": "^10.12.21",
"@types/supertest": "^2.0.7",
"jest": "^24.0.0",
"nodemon": "^1.18.9",
"prettier": "^1.16.4",
"supertest": "^3.4.2",
"ts-jest": "^23.10.5",
"ts-loader": "^5.3.3",
"tsconfig-paths": "^3.7.0",
"tslint": "^5.12.1",
"tslint-config-prettier": "^1.18.0",
"typescript": "^3.3.1"
}
}