-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
63 lines (63 loc) · 1.71 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
{
"name": "iframe-screenshare",
"version": "5.0.0",
"description": "Utility for an application to enable screen sharing in an iframed window",
"main": "out/iframe-screenshare.min.js",
"directories": {
"test": "test"
},
"scripts": {
"lint": "semistandard",
"build": "rollup --config rollup.config.js",
"prepublish": "npm run build && npm run test",
"cover": "istanbul check-coverage --branches 64 --lines 85 --functions 84 coverage/coverage-final.json",
"_test": "istanbul --report=json --report=html cover _mocha",
"test_no_coverage": "node_modules/.bin/mocha --compilers js:babel-core/register test/test.js",
"test-server": "./watch-tests.sh",
"test": "npm run lint && npm run test_no_coverage"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mypurecloud/iframe-screenshare.git"
},
"keywords": [
"screenshare",
"screen",
"share",
"iframe"
],
"author": "Xander Dumaine <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/mypurecloud/iframe-screenshare/issues"
},
"pre-push": [
"test"
],
"pre-commit": [
"lint"
],
"homepage": "https://github.com/mypurecloud/iframe-screenshare#readme",
"devDependencies": {
"babel-preset-es2015": "^6.14.0",
"chai": "^4.0.2",
"istanbul": "^1.0.0-alpha.2",
"mocha": "^3.2.0",
"pre-commit": "^1.1.3",
"pre-push": "^0.1.1",
"rollup": "^0.42.0",
"rollup-plugin-babel": "^2.6.1",
"rollup-plugin-uglify": "^2.0.0",
"semistandard": "^10.0.0",
"sinon": "^2.1.0",
"uglify-js": "^3.0.0"
},
"semistandard": {
"ignore": [
"**/out/",
"/lib/select2/",
"/lib/ckeditor/",
"tmp.js"
]
}
}