-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
61 lines (61 loc) · 1.5 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
{
"name": "ringcentral-js-concise",
"version": "0.8.1",
"description": "Concise JavaScript SDK for RingCentral.",
"repository": "[email protected]:tylerlong/ringcentral-js-concise.git",
"author": "Tyler Long <[email protected]>",
"license": "MIT",
"main": "dist/ringcentral.js",
"module": "src/ringcentral.js",
"scripts": {
"test": "standard && jest -w 1 --detectOpenHandles",
"test2": "standard && jest -w 1 --detectOpenHandles $REGEX",
"release": "webpack --progress",
"prepublishOnly": "yarn release"
},
"dependencies": {
"axios": "^0.21.1",
"js-base64": "^3.6.0",
"multipart-mixed-parser": "^0.1.3",
"qs": "^6.9.6",
"urijs": "^1.19.5"
},
"devDependencies": {
"@babel/core": "^7.12.13",
"@babel/preset-env": "^7.12.13",
"@babel/register": "^7.12.13",
"babel-core": "7.0.0-bridge.0",
"babel-jest": "^26.6.3",
"concat-stream": "^2.0.0",
"dotenv-override-true": "^6.2.2",
"form-data": "^3.0.0",
"husky": "^5.0.9",
"jest": "^26.6.3",
"pubnub": "^4.32.1",
"ramda": "^0.27.1",
"standard": "^16.0.3",
"wait-for-async": "^0.5.0",
"webpack": "^5.21.2",
"webpack-cli": "^4.5.0",
"yarn-upgrade-all": "^0.5.4"
},
"peerDependencies": {
"pubnub": "^4.32.1"
},
"files": [
"dist/*",
"src/*",
"yarn.lock"
],
"yarn-upgrade-all": {
"ignore": [
"babel-core"
]
},
"jest": {
"testEnvironment": "node",
"setupFiles": [
"dotenv-override-true/config"
]
}
}