-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
39 lines (39 loc) · 1.19 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
{
"name": "web-share-wrapper",
"version": "0.2.2",
"description": "A web component that wraps other share elements to replace with a web share button where supported.",
"repository": {
"type": "git",
"url": "https://github.com/philnash/web-share-wrapper.git"
},
"main": "dist/web-share-wrapper.cjs.js",
"browser": "dist/web-share-wrapper.umd.js",
"module": "dist/web-share-wrapper.es.js",
"unpkg": "dist/web-share-wrapper.min.js",
"files": [
"dist/*"
],
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "rollup -c && npm run minify",
"dev": "rollup -c -w",
"minify": "uglifyjs dist/web-share-wrapper.umd.js --compress --output dist/web-share-wrapper.min.js",
"prepublish": "npm run build"
},
"keywords": [
"web share",
"web component"
],
"author": "Phil Nash <philnash@twilio.com>",
"license": "MIT",
"devDependencies": {
"babel-core": "^6.26.3",
"babel-plugin-external-helpers": "^6.22.0",
"babel-plugin-transform-custom-element-classes": "^0.1.0",
"babel-preset-env": "^1.7.0",
"bower": "^1.8.8",
"rollup": "^0.62.0",
"rollup-plugin-babel": "^3.0.7",
"uglify-js": "^3.6.0"
}
}