forked from ringcentral/ringcentral-js
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 2.2 KB
/
package.json
File metadata and controls
72 lines (72 loc) · 2.2 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
61
62
63
64
65
66
67
68
69
70
71
72
{
"name": "rcsdk",
"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 mocha && npm run karma",
"mocha": "./node_modules/.bin/mocha --recursive ./build/tests/specs.js",
"mocha-api": "./node_modules/.bin/mocha --recursive ./build/tests/specs-api.js",
"karma": "./node_modules/karma/bin/karma start ./test-utils/karma.conf.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 specs.js --dir=./build/coverage --report=lcov --hook-run-in-context ./node_modules/mocha/bin/_mocha -- --reporter spec ./build/test/specs.js"
},
"dependencies": {
"dom-storage": "^2.0.1",
"es6-promise": "^2.3.0",
"pubnub": "^3.7.11",
"xhr2": "^0.1.2"
},
"devDependencies": {
"chai": "^3.0.0",
"express": "^4.13.1",
"glob": "^5.0.13",
"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.11.1",
"istanbul": "^0.3.17",
"karma": "^0.12.37",
"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.0.2",
"karma-phantomjs-launcher": "^0.2.0",
"karma-requirejs": "^0.2.2",
"mocha": "^2.2.5",
"sinon": "^1.15.4",
"sinon-chai": "^2.8.0",
"soap": "^0.9.1",
"ts-loader": "^0.4.6",
"webpack": "^1.10.1"
},
"preferGlobal": false,
"private": false,
"main": "./build/rc-sdk.js",
"author": {
"name": "RingCentral, Inc.",
"email": "devsupport@ringcentral.com"
},
"contributors": [
{
"name": "Kirill Konshin"
}
],
"repository": {
"type": "git",
"url": "git://github.com/ringcentral/js-sdk.git"
},
"bugs": {
"url": "https://github.com/ringcentral/js-sdk/issues"
},
"homepage": "https://github.com/ringcentral/js-sdk",
"engines": {
"node": ">=0.10.36"
},
"license": "MIT"
}