-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
58 lines (58 loc) · 1.7 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
{
"name": "ringcentral-helpers",
"version": "0.1.0",
"scripts": {
"build": "./node_modules/.bin/gulp",
"watch": "npm run build -- --watch",
"test": "npm run build && npm run mocha",
"mocha": "./node_modules/.bin/mocha --recursive ./build/tests/specs.js",
"mocha-ts": "./node_modules/.bin/mocha --recursive --require ts-node/register ./src/**/*-spec.ts",
"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/tests/specs.js",
"tsd": "tsd reinstall -so"
},
"dependencies": {},
"devDependencies": {
"chai": "^3.0.0",
"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.1",
"mocha": "^2.2.5",
"ringcentral": "^2.*",
"sinon": "^1.15.4",
"sinon-chai": "^2.8.0",
"ts-loader": "^0.7.2",
"ts-node": "^0.5.4",
"typescript": "^1.6.2",
"webpack": "^1.12.9"
},
"preferGlobal": false,
"private": false,
"main": "./build/ringcentral-helpers.js",
"author": {
"name": "RingCentral, Inc.",
"email": "devsupport@ringcentral.com"
},
"contributors": [
{
"name": "Kirill Konshin"
}
],
"repository": {
"type": "git",
"url": "git://github.com/ringcentral/ringcentral-js-helpers.git"
},
"bugs": {
"url": "/~https://github.com/ringcentral/ringcentral-js-helpers/issues"
},
"homepage": "/~https://github.com/ringcentral/ringcentral-js-helpers",
"engines": {
"node": ">=0.10.36"
},
"license": "MIT"
}