forked from ringcentral/ringcentral-js-client
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.68 KB
/
Copy pathpackage.json
File metadata and controls
60 lines (60 loc) · 1.68 KB
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-client",
"version": "0.1.0",
"scripts": {
"start": "node server.js",
"build": "npm run swagger && ./node_modules/.bin/gulp",
"watch": "npm run build -- watch",
"test": "npm run build && npm run mocha",
"mocha": "./node_modules/.bin/mocha ./build/tests/specs.js",
"istanbul": "./node_modules/.bin/istanbul cover -x specs.js --dir=./build/coverage --report=lcov --hook-run-in-context ./node_modules/mocha/bin/_mocha -- --reporter spec ./build/test/specs.js",
"swagger": "node codegen/generate.js"
},
"dependencies": {},
"devDependencies": {
"chai": "^3.0.0",
"express": "^4.13.1",
"glob": "^6.0.1",
"gulp": "^3.9.0",
"gulp-rename": "^1.2.2",
"gulp-replace": "^0.5.3",
"gulp-sourcemaps": "^1.5.2",
"gulp-uglify": "^1.2.0",
"gulp-util": "^3.0.6",
"gulp-webpack-build": "^0.13.1",
"istanbul": "^0.4.0",
"js-beautify": "^1.5.10",
"mocha": "^2.2.5",
"ringcentral": "^2.*",
"sinon": "^1.15.4",
"sinon-chai": "^2.8.0",
"soap": "^0.11.0",
"ts-loader": "^0.7.1",
"typescript": "^1.6.2",
"webpack": "^1.12.2"
},
"preferGlobal": false,
"private": false,
"main": "./build/ringcentral.js",
"author": {
"name": "RingCentral, Inc.",
"email": "devsupport@ringcentral.com"
},
"contributors": [
{
"name": "Kirill Konshin"
}
],
"repository": {
"type": "git",
"url": "git://github.com/ringcentral/ringcentral-js-client.git"
},
"bugs": {
"url": "https://github.com/ringcentral/ringcentral-js-client/issues"
},
"homepage": "https://github.com/ringcentral/ringcentral-js-client",
"engines": {
"node": ">=0.10.36"
},
"license": "MIT"
}