-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
46 lines (46 loc) · 1.56 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
{
"name": "ringcentral-ts",
"version": "0.1.0",
"scripts": {
"build": "./script/build.sh",
"watch": "tsc -w",
"test": "nyc mocha --no-timeouts build/test/index.js",
"coveralls": "nyc report --reporter=text-lcov | coveralls",
"coverage-html": "npm test && nyc report --reporter=html",
"generate": "node ../rc-codegen/ -l typescript -o src/ -t codegen/templates/ -c codegen/config.json",
"docs": "cd ./src; typedoc --mode modules -m es6 --out ../docs ./Client.ts ./FileTokenStore.ts ./WebTokenStore.ts --ignoreCompilerErrors --excludePrivate --lib lib.es6.d.ts --disableOutputCheck --name 'ringcentral-ts API Reference'",
"lint": "tslint test/*.ts src/*.ts src/**/*.ts"
},
"dependencies": {
"@types/node": "^8.0.20",
"delay.ts": "^1.1.0",
"form-data": "^2.1.2",
"http-status": "^1.0.1",
"isomorphic-fetch": "^2.2.1",
"known-fetch-body": "^0.1.1",
"pubnub": "^4.4.4",
"tslib": "^1.6.0"
},
"devDependencies": {
"@types/chai": "^4.0.2",
"@types/mocha": "^2.2.41",
"chai": "^4.1.1",
"coveralls": "^3.0.0",
"fetch-mock": "^5.10.0",
"mocha": "^4.1.0",
"nyc": "^11.1.0",
"sinon": "^4.1.3",
"tslint": "^5.0.0",
"typedoc": "^0.9.0",
"typescript": "^2.3.2",
"webpack": "^3.5.2"
},
"preferGlobal": false,
"private": false,
"main": "./build/src/Client.js",
"types": "./build/src/Client.d.ts",
"license": "MIT",
"description": "Javascript/typescript sdk for RingCentral REST API. Refer to http://developer.ringcentral.com/.",
"repository": "[email protected]:zengfenfei/ringcentral.ts.git",
"author": "Kevin Zeng <[email protected]>"
}