-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
73 lines (73 loc) · 1.63 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
{
"name": "dyframe",
"version": "0.5.1",
"description": "Dynamically render responsive HTML into iframe.",
"author": "Hiroyuki Tanjo",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/htanjo/dyframe.git"
},
"homepage": "https://github.com/htanjo/dyframe",
"bugs": "https://github.com/htanjo/dyframe/issues",
"keywords": [
"javascript",
"html",
"iframe",
"viewport"
],
"engines": {
"node": ">=0.10.0"
},
"scripts": {
"test": "gulp test"
},
"main": "dyframe.js",
"files": [
"dyframe.js",
"dyframe.min.js"
],
"devDependencies": {
"browser-sync": "^2.6.1",
"chai": "^3.3.0",
"del": "^2.0.2",
"eslint-config-xo-space": "^0.14.0",
"gulp": "^3.8.11",
"gulp-bump": "^2.2.0",
"gulp-eslint": "^3.0.1",
"gulp-gh-pages": "^0.5.0",
"gulp-git": "^1.1.1",
"gulp-header": "^1.2.2",
"gulp-if": "^2.0.1",
"gulp-load-plugins": "^1.2.4",
"gulp-rename": "^1.2.2",
"gulp-replace": "^0.5.3",
"gulp-uglify": "^2.0.0",
"karma": "^1.1.1",
"karma-chai": "^0.1.0",
"karma-chrome-launcher": "^2.0.0",
"karma-coverage": "^1.1.0",
"karma-coveralls": "^1.1.2",
"karma-mocha": "^1.1.1",
"karma-mocha-reporter": "^2.0.4",
"karma-phantomjs-launcher": "^1.0.1",
"karma-sauce-launcher": "^1.0.0",
"minimist": "^1.1.1",
"mocha": "^3.0.0",
"opn": "^4.0.2",
"run-sequence": "^1.0.2"
},
"eslintConfig": {
"extends": "xo-space/browser",
"env": {
"amd": true,
"commonjs": true
},
"rules": {
"wrap-iife": [
"error",
"outside"
]
}
}
}