-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
32 lines (32 loc) · 918 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
{
"name": "html-imageblur",
"version": "0.0.1",
"author": {
"email": "[email protected]",
"name": "Dominik Biedebach",
"url": "https://github.com/bdbch"
},
"repository": {
"type": "git",
"url": "[email protected]:bdbch/html-imageblur.git"
},
"main": "index.js",
"license": "MIT",
"scripts": {
"build": "babel --plugins=transform-class-properties,transform-es2015-modules-strip src/index.js --out-file build/image-blur.js && babel --plugins=transform-class-properties --presets=es2015 src/index.js --out-file build/image-blur.es5.js"
},
"keywords": [
"custom-element",
"blur",
"transform",
"css",
"html",
"image"
],
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-es2015-modules-strip": "^0.1.1",
"babel-preset-es2015": "^6.24.1"
}
}