-
Notifications
You must be signed in to change notification settings - Fork 22
/
package.json
75 lines (75 loc) · 2.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
68
69
70
71
72
73
74
75
{
"name": "@twilio/video-processors",
"title": "Twilio Video Processors",
"description": "Twilio Video Processors JavaScript Library",
"version": "2.2.1-dev",
"homepage": "https://github.com/twilio/twilio-video-processors.js#readme",
"author": "Charlie Santos <csantos@twilio.com>",
"contributors": [
"Charlie Santos <csantos@twilio.com>",
"Manjesh Malavalli <mmalavalli@twilio.com>"
],
"keywords": [
"twilio",
"webrtc",
"library",
"javascript",
"video",
"processors",
"virtual background"
],
"repository": {
"type": "git",
"url": "git+https://github.com/twilio/twilio-video-processors.js.git"
},
"engines": {
"node": ">=14"
},
"license": "BSD-3-Clause",
"main": "./es5/index.js",
"types": "./es5/index.d.ts",
"scripts": {
"build": "npm-run-all clean build:es5 build:js build:js-min build:js-assets docs",
"build:js": "rimraf ./dist && node ./scripts/build.js ./LICENSE.md ./dist/build/twilio-video-processors.js",
"build:js-min": "uglifyjs ./dist/build/twilio-video-processors.js -o ./dist/build/twilio-video-processors.min.js --comments \"/^! twilio-video-processors.js/\" -b beautify=false,ascii_only=true",
"build:js-assets": "cp -r ./assets/* ./dist/build/",
"build:es5": "npm run build:version && tsc",
"build:version": "node ./scripts/version.js",
"docs": "npm run build:version && rimraf ./dist/docs && typedoc --excludePrivate --excludeProtected --disableSources",
"clean": "rimraf ./dist ./es5 ./coverage ./.nyc_output lib/utils/version.ts",
"lint": "tslint -c ./tslint.json --project ./tsconfig.json -t stylish",
"test": "npm-run-all lint build test:unit test:integration",
"test:unit": "npm run build:version && rimraf ./coverage/unit ./.nyc_output && nyc mocha -r ts-node/register ./tests/unit/index.ts",
"test:integration": "npm run build:version && rimraf ./coverage/integration && karma start",
"release": "release",
"watch": "npm run build:version && nodemon"
},
"devDependencies": {
"@types/mocha": "^8.2.1",
"@types/node": "^14.14.31",
"@types/sinon": "^9.0.10",
"browserify": "^17.0.0",
"karma": "^6.1.1",
"karma-chrome-launcher": "^3.1.0",
"karma-env-preprocessor": "^0.1.1",
"karma-firefox-launcher": "^2.1.0",
"karma-mocha": "^2.0.1",
"karma-spec-reporter": "0.0.32",
"karma-typescript": "^5.4.0",
"mocha": "^8.3.0",
"nodemon": "^2.0.7",
"npm-run-all": "^4.1.5",
"nyc": "^15.1.0",
"sinon": "^9.2.4",
"ts-node": "^9.1.1",
"tsify": "^5.0.2",
"tslint": "^6.1.3",
"twilio-release-tool": "^1.0.2",
"typedoc": "0.25.0",
"typedoc-plugin-as-member-of": "^1.0.2",
"typescript": "5.2.2",
"uglify-js": "^3.17.4",
"vinyl-fs": "^3.0.3",
"vinyl-source-stream": "^2.0.0"
}
}