-
Notifications
You must be signed in to change notification settings - Fork 56
/
Copy pathpackage.json
60 lines (60 loc) · 1.58 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
{
"name": "@ringcentral/redux",
"version": "0.0.0",
"scripts": {
"clean": "rimraf lib/* es6/* .cache",
"build": "npm run clean && npm run build:tsc:es5 && npm run build:tsc:es6",
"build:tsc:es5": "tsc",
"build:tsc:es6": "tsc --project tsconfig.es6.json",
"start": "npm-run-all -p start:tsc:es5 start:tsc:es6",
"start:tsc:es5": "npm run build:tsc:es5 -- --watch --preserveWatchOutput",
"start:tsc:es6": "npm run build:tsc:es6 -- --watch --preserveWatchOutput"
},
"devDependencies": {
"@ringcentral/sdk": "*",
"@ringcentral/sdk-utils": "*",
"@types/node": "^18.8.5",
"@types/react": "^16.14.21",
"@types/react-redux": "^6.0.9",
"@types/redux": "^3.6.0",
"npm-run-all": "^4.1.3",
"react": "^16.14.0",
"react-redux": "^5.1.2",
"redux": "^4.0.1",
"rimraf": "^2.6.2",
"tslib": "^2.4.0",
"typescript": "^4.8.4"
},
"peerDependencies": {
"@ringcentral/sdk": ">=4",
"react": "^16.0.0",
"redux": "*"
},
"main": "./lib/index.js",
"module": "./es6/index.js",
"types": "./lib/index.d.ts",
"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"
}
}