-
Notifications
You must be signed in to change notification settings - Fork 14
/
package.json
58 lines (58 loc) · 1.75 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": "highlight-share",
"version": "0.2.0",
"description": "Medium-like text selection sharing without dependencies",
"keywords": [
"highlight",
"medium",
"popover",
"selection",
"share",
"sharepoint",
"sharing",
"text"
],
"main": "dist/highlight-share.js",
"module": "src/highlight-share.js",
"author": {
"name": "Liz Shaw",
"email": "[email protected]"
},
"license": "MIT",
"scripts": {
"prepublish": "npm test",
"preversion": "npm test",
"coverage": "nyc report --reporter=text-lcov | coveralls",
"test": "nyc --require babel-core/register mocha test/*.js test/sharers/*.js",
"testonly": "mocha --compilers js:babel-register test/*.js test/sharers/*.js"
},
"repository": {
"type": "git",
"url": "https://github.com/anythingcodes/highlight-share.git"
},
"bugs": {
"url": "https://github.com/anythingcodes/highlight-share/issues"
},
"devDependencies": {
"babel-plugin-transform-es2015-modules-commonjs": "^6.26.2",
"babel-preset-es2015": "^6.18.0",
"chai": "^3.5.0",
"coveralls": "^2.11.15",
"eslint-config-airbnb-base": "^11.0.0",
"eslint-plugin-import": "^2.2.0",
"gulp": "^3.9.1",
"gulp-cssnano": "^2.1.2",
"gulp-eslint": "^3.0.1",
"gulp-less": "^3.3.0",
"gulp-uglify": "^2.0.0",
"jsdom": "^9.9.1",
"mocha": "^3.2.0",
"nyc": "^10.0.0",
"rollup-plugin-babel": "^2.7.1",
"rollup-stream": "^1.16.0",
"sinon": "^1.17.7",
"sinon-chai": "^2.8.0",
"vinyl-buffer": "^1.0.0",
"vinyl-source-stream": "^1.1.0"
}
}