forked from twilio/twilio-taskrouter.js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
95 lines (95 loc) · 3.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
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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
{
"name": "twilio-taskrouter",
"title": "Twilio TaskRouter",
"version": "0.5.5-dev",
"description": "Twilio TaskRouter JavaScript library",
"homepage": "https://www.twilio.com",
"author": "Wanjun Li <[email protected]>",
"contributors": [
"Martin Amps <[email protected]>",
"Mehul Chopra <[email protected]>",
"Alex Laird <[email protected]>"
],
"license": "MIT",
"keywords": [
"twilio",
"library",
"javascript",
"taskrouter",
"worker"
],
"files": [
"dist"
],
"main": "./dist/index.commonjs2.js",
"browser": "./dist/index.window.js",
"scripts": {
"webpack": "webpack --config ./webpack.config.js --progress --mode",
"mocha": "mocha --require babel-core/register --exit $1",
"clean": "rm -rf ./coverage ./dist ./node_modules",
"lint": "eslint ./lib ./test/integration",
"test:unit": "mocha --full-trace --check-leaks --require babel-core/register ./test/unit/index.js --exit",
"test:integration": "mocha --full-trace --check-leaks --require babel-core/register ./test/integration/index.js --exit",
"test:integration:voice": "mocha --full-trace --check-leaks --require babel-core/register ./test/voice/index.js --timeout 40000 --exit",
"test:integration:media": "mocha --full-trace --check-leaks --require babel-core/register ./test/media/index.js --timeout 40000 --exit",
"test": "run-s test:unit test:integration",
"build:dev": "npm run webpack development",
"build:prod": "npm run webpack production",
"prebuild": "npm-run-all clean && yarn install",
"build": "npm-run-all lint build:prod",
"postbuild": "npm-run-all docs coverage",
"docs": "node ./scripts/docs.js ./dist/docs",
"coverage": "istanbul cover _mocha --dir coverage -- -R progress -r babel-register ./test/unit/index.js --exit"
},
"repository": {
"type": "git",
"url": "https://github.com/twilio/twilio-taskrouter.js.git"
},
"dependencies": {
"lodash": "^4.17.5",
"loglevel": "^1.4.1",
"ws": "^7.4.6",
"xmlhttprequest": "^1.8.0"
},
"devDependencies": {
"async-test-tools": "^1.0.7",
"axios": "^0.21.1",
"babel-cli": "^6.26.0",
"babel-eslint": "^8.2.2",
"babel-plugin-transform-object-assign": "^6.22.0",
"babel-plugin-transform-runtime": "^6.22.0",
"babel-preset-es2015": "^6.22.0",
"babel-preset-stage-3": "^6.24.1",
"babel-runtime": "^6.22.0",
"chai": "^4.1.2",
"chai-as-promised": "^7.1.1",
"chai-datetime": "^1.4.1",
"cheerio": "^1.0.0-rc.2",
"copy-webpack-plugin": "^4.6.0",
"depcheck": "^0.6.9",
"eslint": "^4.19.1",
"ink-docstrap": "^1.3.2",
"istanbul": "^1.0.0-alpha.2",
"jsdoc": "^3.5.5",
"jsdoc-webpack-plugin-v2": "^2.0.2",
"license-info-webpack-plugin": "^1.0.0",
"mocha": "^5.0.4",
"mock-socket": "^7.1.0",
"npm": "^6.14.6",
"npm-run-all": "^4.0.1",
"sinon": "^4.5.0",
"sinon-chai": "^3.0.0",
"twilio": "^3.52.0",
"twilio-sync": "^0.12.1",
"uglifyjs-webpack-plugin": "^1.2.5",
"utf-8-validate": "^4.0.1",
"vinyl-fs": "^3.0.2",
"webpack": "^4.1.1",
"webpack-auto-inject-version": "^1.0.0",
"webpack-cli": "^2.0.10"
},
"engines": {
"node": ">=6"
},
"types": "./dist/types.d.ts"
}