-
Notifications
You must be signed in to change notification settings - Fork 129
/
package.json
78 lines (78 loc) · 2.17 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
{
"name": "vod-js-sdk-v6",
"version": "1.4.12",
"description": "tencent cloud vod js sdk v6",
"main": "lib/src/tc_vod.js",
"unpkg": "dist/vod-js-sdk-v6.js",
"typings": "lib/src/tc_vod.d.ts",
"scripts": {
"test": "cross-env NODE_ENV=test mocha -r espower-typescript/guess -r jsdom-global/register -r test/env test/**/*.test.ts",
"cover": "cross-env NODE_ENV=test nyc mocha -r espower-typescript/guess -r jsdom-global/register -r test/env test/**/*.test.ts",
"dev": "webpack --config webpack.dev.config.js --watch",
"dist": "webpack --config webpack.config.js",
"build": "npm run test && npm run dist && npm run compile",
"compile": "tsc -p tsconfig.json",
"prepublish": "npm run build",
"lint": "tsc --noEmit && eslint 'src/**/*.{js,ts,tsx}' --quiet --fix"
},
"repository": {
"type": "git",
"url": "git+https://github.com/tencentyun/vod-js-sdk-v6.git"
},
"keywords": [
"tencentcloud",
"sdk",
"vod"
],
"author": "alsotang <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/tencentyun/vod-js-sdk-v6/issues"
},
"homepage": "https://github.com/tencentyun/vod-js-sdk-v6#readme",
"dependencies": {
"axios": "^0.21.1",
"cos-js-sdk-v5": "^1.3.7",
"eventemitter3": "^4.0.7",
"js-sha1": "^0.6.0",
"uuid": "^3.3.2"
},
"devDependencies": {
"@types/mocha": "^5.2.5",
"@types/semver": "^6.0.0",
"@types/sha1": "^1.1.1",
"@types/uuid": "^3.4.4",
"@typescript-eslint/eslint-plugin": "^1.9.0",
"@typescript-eslint/parser": "^1.9.0",
"cross-env": "^6.0.3",
"eslint": "^5.16.0",
"eslint-config-prettier": "^4.3.0",
"eslint-plugin-prettier": "^3.1.0",
"espower-typescript": "^9.0.1",
"jsdom": "^13.1.0",
"jsdom-global": "^3.0.2",
"mm": "^2.4.1",
"mocha": "^5.2.0",
"nyc": "^13.1.0",
"power-assert": "^1.6.1",
"prettier": "^1.17.1",
"semver": "^6.1.1",
"ts-loader": "^5.3.3",
"typescript": "^3.5.3",
"webpack": "^4.28.1",
"webpack-cli": "^3.2.1"
},
"nyc": {
"extension": [
".ts",
".tsx"
],
"include": [
"src"
],
"reporter": [
"html"
],
"all": true
}
}