-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
38 lines (38 loc) · 971 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
36
37
38
{
"name": "resizable-iframe",
"version": "1.0.0",
"description": "Library to delegate size of an iframe to the parent window",
"homepage": "https://github.com/Tickaroo/resizable-iframe",
"author": "Anton Pawlik <[email protected]> (http://antpaw.org)",
"license": "MIT",
"keywords": [
"iframe",
"size"
],
"repository": {
"type": "git",
"url": "[email protected]/Tickaroo/resizable-iframe.git"
},
"main": "index.js",
"directories": {
"test": "test"
},
"scripts": {
"build": "webpack",
"watch": "npm run build -- --watch",
"test": "mocha",
"testdbg": "mocha --debug-brk",
"lint": "jshint **.js **/*.js **/**/*.js",
"coverage": "istanbul cover node_modules/.bin/_mocha"
},
"devDependencies": {
"chai": "^3.5.0",
"codecov.io": "^0.1.6",
"istanbul": "^0.4.2",
"jsdom": "^9.4.5",
"jshint": "^2.9.1",
"mocha": "^3.0.2",
"should": "^11.1.0",
"webpack": "^1.13.1"
}
}