forked from dollarshaveclub/reframe.js
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
74 lines (74 loc) · 2.21 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
{
"name": "reframe.js",
"version": "4.0.2",
"description": "Reframe.js: responsive iframes for embedded content",
"main": "dist/reframe.js",
"module": "dist/reframe.es.js",
"unpkg": "dist/reframe.min.js",
"files": [
"dist",
"types"
],
"scripts": {
"build": "rollup -c rollup.config.js --bundleConfigAsCjs && pnpm run build:types",
"build:release": "pnpm run build && pnpm run test",
"build:types": "tsc",
"lint": "eslint . --fix",
"lint:ci": "eslint .",
"prepublishOnly": "pnpm run build && pnpm run test",
"release": "release-it",
"start": "pnpm run",
"test:es-check": "es-check es5 dist/noframe.js dist/reframe.js dist/noframe.min.js dist/reframe.min.js dist/jquery.noframe.js dist/jquery.reframe.js dist/jquery.reframe.min.js dist/jquery.noframe.min.js",
"test:phantom": "node run-tests.js",
"test": "pnpm run test:phantom && pnpm run test:es-check"
},
"repository": {
"type": "git",
"url": "git+https://github.com/yowainwright/reframe.js.git"
},
"keywords": [
"js",
"iframes",
"fluid",
"responsive",
"video",
"fitvids",
"youtube",
"embeds",
"padding-top"
],
"author": "Jeff Wainwright <yowainwright@gmail.com> (http://jeffry.in)",
"license": "MIT",
"bugs": {
"url": "https://github.com/yowainwright/reframe.ts/issues"
},
"homepage": "https://github.com/yowainwright/reframe.ts#readme",
"devDependencies": {
"@rollup/plugin-commonjs": "^28.0.1",
"@rollup/plugin-node-resolve": "^16.0.0",
"@rollup/plugin-typescript": "^12.1.0",
"@types/node": "^22.0.0",
"@types/rollup": "^0.54.0",
"@typescript-eslint/eslint-plugin": "^7.0.0",
"@typescript-eslint/parser": "^6.4.1",
"commitizen": "^4.3.0",
"conventional-changelog-cli": "^5.0.0",
"es-check": "^8.0.1",
"eslint": "^8.48.0",
"eslint-config-prettier": "^10.0.1",
"husky": "^9.0.3",
"jquery": "^3.7.0",
"node-qunit-phantomjs": "^2.1.1",
"prettier": "^3.0.2",
"qunit": "^2.19.4",
"release-it": "^18.0.0",
"rollup": "^4.22.4",
"rollup-plugin-uglify": "^6.0.4",
"typescript": "^5.2.2"
},
"resolutions": {
"ansi-regex": "^4.1.1",
"minimist": "^1.2.6",
"parse-path": "^5.0.0"
}
}