-
Notifications
You must be signed in to change notification settings - Fork 56
/
package.json
70 lines (70 loc) · 2.11 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
{
"name": "@ringcentral/sdk",
"version": "0.0.0",
"scripts": {
"postinstall": "npx playwright install",
"clean": "rimraf dist/* lib/* es6/* coverage/* .nyc_output .rpt2_cache",
"test": "npm run jest",
"test:coverage": "JEST_ENV=node jest --config jest.config.js --coverage",
"jest": "JEST_ENV=node jest --config jest.config.js",
"jest:browser": "JEST_ENV=jsdom jest --config jest.config.js",
"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": {
"dom-storage": "^2.1.0",
"is-plain-object": "^2.0.4",
"node-fetch": "^2.6.7"
},
"devDependencies": {
"@ringcentral/sdk-utils": "*",
"@types/node": "^20.8.6",
"@types/jest": "^29.5.6",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"ts-jest": "^29.1.1",
"npm-run-all": "^4.1.3",
"rimraf": "^2.6.2",
"source-map-support": "^0.5.9",
"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/index.js",
"module": "./es6/index.js",
"types": "./lib/SDK.d.ts",
"browser": "./lib/SDK.js",
"author": {
"name": "RingCentral, Inc.",
"url": "https://developers.ringcentral.com"
},
"contributors": [
{
"name": "Kirill Konshin"
}
],
"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"
}
}