forked from ringcentral/ringcentral-js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
83 lines (83 loc) · 2.74 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
71
72
73
74
75
76
77
78
79
80
81
82
83
{
"version": "2.0.1",
"name": "ringcentral",
"scripts": {
"start": "node server.js",
"build": "./node_modules/.bin/bower install && ./node_modules/.bin/gulp",
"watch": "npm run build -- watch",
"test": "npm run build && npm run istanbul && npm run karma",
"mocha": "./node_modules/mocha/bin/mocha ./build/tests/ringcentral-tests.js",
"mocha-compilers": "./node_modules/mocha/bin/mocha --compilers spec.js:babel-core/register ./src/**/*-spec.js",
"karma": "./node_modules/karma/bin/karma start ./utils/karma.conf.js",
"karma-webpack": "./node_modules/karma/bin/karma start ./utils/karma.conf.webpack.js",
"karma-chrome": "npm run karma -- --browsers Chrome",
"karma-watch": "npm run karma-chrome -- --no-single-run --auto-watch --log-level warn",
"istanbul": "./node_modules/.bin/istanbul cover -x build/tests/ringcentral-tests.js --dir=./build/coverage --report=lcov --hook-run-in-context ./node_modules/mocha/bin/_mocha -- --reporter spec build/tests/ringcentral-tests.js",
"tsd": "tsd reinstall -so",
"bower": "./node_modules/.bin/bower install --verbose",
"webpack": "./node_modules/.bin/webpack --display-modules"
},
"dependencies": {
"es6-promise": "^2.3.0",
"node-fetch": "^1.3.3",
"pubnub": "^3.7.13",
"regenerator": "^0.8.40",
"resumer": "0.0.0",
"xhr2": "^0.1.2"
},
"devDependencies": {
"babel-core": "^5.8.25",
"babel-loader": "^5.3.2",
"babel-runtime": "^5.8.25",
"bower": "^1.5.3",
"chai": "^3.3.0",
"gulp": "^3.9.0",
"gulp-rename": "^1.2.2",
"gulp-replace": "^0.5.4",
"gulp-sourcemaps": "^1.6.0",
"gulp-uglify": "^1.4.1",
"gulp-util": "^3.0.6",
"istanbul": "^0.3.21",
"karma": "^0.13.10",
"karma-chai-plugins": "^0.6.0",
"karma-coverage": "^0.4.2",
"karma-html-reporter": "^0.2.6",
"karma-mocha": "^0.2.0",
"karma-mocha-reporter": "^1.1.1",
"karma-phantomjs-launcher": "^0.2.1",
"karma-requirejs": "^0.2.2",
"karma-sourcemap-loader": "^0.3.5",
"karma-webpack": "^1.7.0",
"mocha": "^2.3.3",
"phantomjs": "^1.9.18",
"requirejs": "^2.1.20",
"sinon": "^1.17.1",
"sinon-chai": "^2.8.0",
"soap": "^0.9.4",
"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.git"
},
"bugs": {
"url": "/~https://github.com/ringcentral/ringcentral-js/issues"
},
"homepage": "/~https://github.com/ringcentral/ringcentral-js",
"engines": {
"node": ">=0.10.36"
},
"license": "MIT"
}