-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 loc) · 1.67 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
{
"name": "most-visible",
"version": "2.0.0",
"title": "Most Visible",
"description": "A JavaScript module and jQuery plugin which returns the most visible element from a given set.",
"main": "dist/most-visible.js",
"module": "js/most-visible.js",
"type": "module",
"author": "Andy Palmer <[email protected]>",
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.23.2",
"@babel/preset-env": "^7.23.2",
"@rollup/plugin-babel": "^6.0.4",
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/plugin-terser": "^0.4.4",
"eslint": "^8.51.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.28.1",
"jquery": "^3.7.1",
"node-qunit-puppeteer": "^2.1.2",
"prettier": "^3.0.3",
"puppeteer": "^21.3.8",
"qunit": "^2.20.0",
"rollup": "^4.1.4"
},
"files": [
"dist",
"js",
"README.md"
],
"repository": {
"type": "git",
"url": "https://github.com/andyexeter/most-visible"
},
"keywords": [
"jquery",
"jquery-plugin",
"ecosystem:jquery",
"visibility",
"viewport"
],
"scripts": {
"build": "rollup --config",
"test": "node bin/test.cjs",
"test-module": "qunit test/module.js",
"lint": "eslint js/ test/",
"prettier": "prettier js/ test/ bin/",
"ci": "rollup --config && prettier js/ test/ bin/ --check && eslint js/ test/ && node bin/test.cjs && qunit test/module.js"
},
"prettier": {
"printWidth": 160,
"singleQuote": true,
"trailingComma": "es5"
}
}