forked from dollarshaveclub/reframe.js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
82 lines (82 loc) · 3.15 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
74
75
76
77
78
79
80
81
82
{
"name": "reframe.js",
"version": "2.2.4",
"description": "Reframe.js: responsive iframes for embedded content",
"main": "dist/reframe.js",
"module": "dist/reframe.es.js",
"unpkg": "dist/reframe.min.js",
"files": [
"dist"
],
"scripts": {
"build": "gulp build && gulp minify",
"build:release": "npm run build && npm test",
"chore:delete-changelog-branch": "if git show-ref --quiet refs/heads/chore-changelog; then git branch -D chore-changelog; fi",
"chore:branch": "git checkout -b chore-changelog",
"chore:changelog": "conventional-changelog -p eslint -i CHANGELOG.md -s -r 0",
"chore:setup-next-work": "git checkout master && npm run chore:delete-changelog-branch",
"chore:pr": "git add . && git commit -m '[chore] updates changelog' --no-verify && git push origin chore-changelog -f",
"chore:setup-changelog": "git checkout master && git pull",
"chore": "npm run chore:delete-changelog-branch && npm run chore:branch && npm run chore:changelog && npm run chore:pr && npm run chore:setup-next-work",
"eslint": "eslint . --fix",
"eslint:ci": "eslint .",
"minify": "gulp minify",
"postpublish": "git tag $npm_package_version && git push origin --tags && npm run chore",
"prepush": "npm run build && npm test",
"test:es-check": "es-check es5 'dist/jquery.noframe.js' 'dist/jquery.noframe.min.js' 'dist/jquery.reframe.js' 'dist/jquery.reframe.min.js' 'dist/noframe.js' 'dist/noframe.min.js' 'dist/reframe.js' 'dist/reframe.min.js'",
"test-reframe": "gulp build:reframe && gulp test:reframe",
"test-noframe": "gulp build:noframe && gulp test:noframe",
"test-jquery-reframe": "gulp build:jquery-reframe && gulp test:jquery-reframe",
"test-jquery-noframe": "gulp build:jquery-noframe && gulp test:jquery-noframe",
"test": "gulp test && npm run test:es-check"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dollarshaveclub/reframe.js.git"
},
"keywords": [
"js",
"iframes",
"fluid",
"responsive",
"video",
"fitvids",
"youtube",
"embeds",
"padding-top"
],
"author": "Jeff Wainwright <[email protected]> (http://jeffry.in)",
"license": "MIT",
"bugs": {
"url": "https://github.com/dollarshaveclub/reframe.js/issues"
},
"homepage": "https://github.com/dollarshaveclub/reframe.js#readme",
"devDependencies": {
"@babel/core": "^7.0.0",
"@babel/preset-env": "^7.0.0",
"bower": "^1.7.9",
"conventional-changelog-cli": "^2.0.11",
"debug": "^4.0.0",
"es-check": "^4.0.0",
"eslint": "^5.0.0",
"eslint-config-dollarshaveclub": "^3.1.0",
"gulp": "^3.9.1",
"gulp-header": "^2.0.1",
"gulp-rename": "^1.2.2",
"gulp-rollup": "^2.15.0",
"gulp-uglify": "^3.0.0",
"husky": "^1.0.0",
"jquery": "^3.1.0",
"node-qunit-phantomjs": "^2.0.0",
"qunit": "^2.4.1",
"rollup": "^0.66.0",
"rollup-plugin-babel": "^4.0.1",
"rollup-plugin-cleanup": "^3.0.0",
"rollup-plugin-commonjs": "^9.0.0",
"rollup-plugin-eslint": "^5.0.0",
"rollup-plugin-node-resolve": "^3.0.0",
"rollup-plugin-replace": "^2.0.0",
"rollup-plugin-uglify": "^6.0.0"
},
"dependencies": {}
}