-
Notifications
You must be signed in to change notification settings - Fork 56
/
package.json
66 lines (66 loc) · 1.87 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
{
"name": "@ringcentral/subscriptions",
"version": "0.0.0",
"scripts": {
"clean": "rimraf dist/* lib/* es6/* coverage/* .nyc_output .rpt2_cache",
"build": "npm run clean && npm run build:tsc:es5 && npm run build:tsc:es6 && npm run build:webpack",
"build:tsc:es5": "tsc",
"build:tsc:es6": "tsc --project tsconfig.es6.json",
"build:webpack": "webpack --progress",
"start": "npm-run-all -p start:tsc:es5 start:tsc:es6 start:webpack",
"start:tsc:es5": "npm run build:tsc:es5 -- --watch --preserveWatchOutput",
"start:tsc:es6": "npm run build:tsc:es6 -- --watch --preserveWatchOutput",
"start:webpack": "npm run build:webpack -- --watch"
},
"dependencies": {
"@rc-ex/core": "^1.0.2-alpha.0",
"@rc-ex/rcsdk": "^1.0.5-alpha.0",
"@rc-ex/ws": "^1.0.5-alpha.0",
"wait-for-async": "^0.6.0"
},
"devDependencies": {
"@ringcentral/sdk": "*",
"@ringcentral/sdk-utils": "*",
"@types/node": "^20.8.6",
"npm-run-all": "^4.1.3",
"nyc": "^15.1.0",
"rimraf": "^2.6.2",
"ts-node": "^10.9.1",
"tslib": "^2.6.2",
"typescript": "^4.8.4",
"ts-loader": "^9.5.0",
"webpack": "^5.76.0",
"webpack-cli": "^4.9.0"
},
"main": "./lib/Subscriptions.js",
"module": "./es6/Subscriptions.js",
"browser": "./lib/Subscriptions.js",
"types": "./lib/Subscriptions.d.ts",
"author": {
"name": "RingCentral, Inc.",
"url": "https://developers.ringcentral.com"
},
"contributors": [
{
"name": "Kirill Konshin"
},
{
"name": "Tyler Liu"
}
],
"repository": {
"type": "git",
"url": "git://github.com/ringcentral/ringcentral-js.git"
},
"bugs": {
"url": "https://github.com/ringcentral/ringcentral-js/issues"
},
"homepage": "https://github.com/ringcentral/ringcentral-js",
"engines": {
"node": ">=4"
},
"license": "MIT",
"publishConfig": {
"access": "public"
}
}