forked from estevanmaito/sharect
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
35 lines (35 loc) · 960 Bytes
/
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
{
"name": "sharect",
"version": "1.0.1",
"description": "Share selection text",
"main": "index.js",
"scripts": {
"lint": "eslint src",
"babel": "mkdirp dist -p && babel src/sharect.js --out-file dist/sharect.babel.js --presets es2015",
"uglify": "uglifyjs dist/sharect.babel.js -m -c -o dist/sharect.min.js",
"build": "npm run lint && npm run babel && npm run uglify"
},
"repository": {
"type": "git",
"url": "git+https://github.com/estevanmaito/sharect.git"
},
"keywords": [
"sharect",
"share",
"text",
"selection"
],
"author": "Estevan Maito <ejmaito@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/estevanmaito/sharect/issues"
},
"homepage": "https://github.com/estevanmaito/sharect#readme",
"devDependencies": {
"babel-cli": "^6.24.0",
"babel-preset-es2015": "^6.24.0",
"eslint": "^3.18.0",
"mkdirp": "^0.5.1",
"uglify-js": "^2.8.13"
}
}