-
Notifications
You must be signed in to change notification settings - Fork 19
/
package.json
53 lines (53 loc) · 1.14 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
{
"name": "sharect",
"version": "2.0.0",
"description": "Share selection text",
"main": "dist/sharect.js",
"author": "Estevan Maito <[email protected]>",
"scripts": {
"test": "jest --watch",
"test:coverage": "jest --coverage",
"build": "webpack",
"dev": "webpack --watch",
"lint": "eslint",
"release": "release-it"
},
"release-it": {
"github": {
"release": true,
"assets": [
"dist/sharect.js"
]
}
},
"files": [
"dist/sharect.js"
],
"dependencies": {},
"devDependencies": {
"@babel/core": "^7.4.4",
"@babel/preset-env": "^7.4.4",
"babel-loader": "^8.0.6",
"eslint": "^5.16.0",
"jest": "^24.7.1",
"release-it": "^12.2.0",
"webpack": "^4.31.0",
"webpack-cli": "^3.3.2",
"webpack-dev-server": "^3.3.1"
},
"license": "MIT",
"keywords": [
"sharect",
"share",
"text",
"selection"
],
"repository": {
"type": "git",
"url": "git+https://github.com/estevanmaito/sharect.git"
},
"bugs": {
"url": "https://github.com/estevanmaito/sharect/issues"
},
"homepage": "https://github.com/estevanmaito/sharect#readme"
}