-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
45 lines (45 loc) · 1.2 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
{
"name": "@api.video/video-uploader",
"version": "1.1.6",
"description": "api.video video uploader",
"repository": {
"type": "git",
"url": "[email protected]:apivideo/api.video-typescript-uploader.git"
},
"author": "api.video <[email protected]> (https://api.video/)",
"license": "MIT",
"keywords": [
"video",
"upload",
"apivideo"
],
"main": "dist/index.js",
"module": "dist/index.js",
"types": "dist/src/index.d.ts",
"scripts": {
"tslint": "tslint --project .",
"build": "npm run tslint && webpack --mode production",
"prepublishOnly": "npm run build",
"test": "npm run build && mocha -r ts-node/register -r jsdom-global/register 'test/**/*.ts'",
"watch": "npx webpack --watch --mode=development"
},
"devDependencies": {
"@types/chai": "^4.3.3",
"@types/jsdom": "^20.0.0",
"@types/mocha": "^10.0.0",
"chai": "^4.3.6",
"jsdom": "^20.0.1",
"jsdom-global": "^3.0.2",
"mocha": "^10.0.0",
"ts-loader": "^9.4.1",
"ts-node": "^10.9.1",
"tslint": "^6.1.3",
"typescript": "^4.8.4",
"webpack": "^5.74.0",
"webpack-cli": "^4.10.0",
"xhr-mock": "^2.5.1"
},
"dependencies": {
"core-js": "^3.25.5"
}
}