-
Notifications
You must be signed in to change notification settings - Fork 54
/
package.json
57 lines (57 loc) · 1.47 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
{
"name": "share-this",
"version": "1.3.1",
"description": "Medium-like text selection sharing without dependencies",
"keywords": [
"medium",
"popover",
"selection",
"share",
"sharing",
"text"
],
"main": "dist/share-this.js",
"module": "src/core.js",
"author": {
"name": "Massimo Artizzu",
"email": "[email protected]"
},
"license": "MIT",
"scripts": {
"build": "gulp",
"prepare": "npm test",
"preversion": "npm test",
"coverage": "nyc report --reporter=text-lcov | coveralls",
"test": "nyc --require @babel/register mocha test/*.js test/sharers/*.js",
"testonly": "mocha --require @babel/register test/*.js test/sharers/*.js"
},
"repository": {
"type": "git",
"url": "https://github.com/MaxArt2501/share-this.git"
},
"bugs": {
"url": "https://github.com/MaxArt2501/share-this/issues"
},
"devDependencies": {
"@babel/core": "^7.5.5",
"@babel/preset-env": "^7.5.5",
"@babel/register": "^7.5.5",
"chai": "^4.2.0",
"coveralls": "^3.0.5",
"eslint-config-airbnb-base": "^13.2.0",
"eslint-plugin-import": "^2.18.0",
"gulp": "^4.0.2",
"gulp-csso": "^3.0.1",
"gulp-eslint": "^6.0.0",
"gulp-less": "^4.0.1",
"gulp-sourcemaps": "^2.6.5",
"jsdom": "^15.1.1",
"mocha": "^6.1.4",
"nyc": "^14.1.1",
"rollup": "^1.17.0",
"rollup-plugin-babel": "^4.3.3",
"rollup-plugin-terser": "^5.1.1",
"sinon": "^7.3.2",
"sinon-chai": "^3.3.0"
}
}