-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
executable file
·70 lines (70 loc) · 1.52 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
{
"name": "tcb-service-sdk",
"version": "0.1.0",
"description": "tcb js sdk for AI service",
"main": "dist/tcb-service-node-sdk/index.js",
"scripts": {
"test": "jest",
"dist": "rollup -c ./tools/rollup.base.js --environment INCLUDE_DEPS,BUILD:production",
"prepublish": "npm run dist"
},
"repository": {
"type": "git",
"url": "http://github.com/TencentCloudBase/tcb-service-sdk.git"
},
"keywords": [
"tencent",
"cloud",
"base",
"javascript",
"sdk",
"for",
"AI",
"service"
],
"author": "heyli",
"license": "MIT",
"devDependencies": {
"@types/jest": "^23.3.13",
"@types/node": "^10.12.18",
"babel-eslint": "^10.0.1",
"eslint": "^5.12.1",
"eslint-config-alloy": "^1.4.2",
"eslint-plugin-typescript": "^0.14.0",
"jest": "^25.0.0",
"rollup": "^1.1.2",
"rollup-plugin-node-resolve": "^4.0.0",
"rollup-plugin-typescript": "^1.0.0",
"ts-jest": "^23.10.5",
"tslib": "^1.9.3",
"typescript": "^3.3.3",
"typescript-eslint-parser": "^22.0.0"
},
"engines": {
"node": ">=8.6.0"
},
"dependencies": {
"axios": "^0.18.1",
"qcloudsms_js": "^0.1.1",
"tcb-admin-node": "^1.4.3",
"tencentcloud-sdk-nodejs": "^3.0.46"
},
"jest": {
"testMatch": [
"**/test/!(tools)/*.js",
"**/test/*/*.js"
],
"testEnvironment": "node",
"transform": {
"^.+\\.tsx?$": "ts-jest"
},
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json",
"node"
]
}
}