-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
50 lines (50 loc) · 1.22 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
{
"name": "lucify-embed-code",
"license": "MIT",
"version": "0.1.2",
"description": "Embed code generator for iframe-resizer",
"main": "lib/embed-code.js",
"scripts": {
"start": "gulp",
"test": "exit 0",
"build-embed": "webpack -p",
"build-embed-code": "babel --presets es2015,stage-0 -d lib/. src/embed-code",
"build": "npm run build-embed && npm run build-embed-code",
"prepublish": "npm run build"
},
"engines": {
"node": "^4.2.2"
},
"homepage": "https://github.com/lucified/lucify-embed-code",
"contributors": [
{
"name": "Juho Ojala",
"email": "[email protected]"
},
{
"name": "Ville Saarinen",
"email": "[email protected]"
},
{
"name": "Ville Väänänen",
"email": "[email protected]"
}
],
"repository": {
"type": "git",
"url": "git+https://github.com/lucified/lucify-embed-code.git"
},
"devDependencies": {
"babel-cli": "^6.8.0",
"babel-core": "^6.8.0",
"babel-loader": "^6.2.4",
"babel-preset-es2015": "^6.5.0",
"babel-preset-stage-0": "^6.5.0",
"webpack": "^1.12.14"
},
"dependencies": {
"iframe-resizer": "^2.8.10",
"shortid": "^2.2.6",
"sprintf": "^0.1.5"
}
}