-
-
Notifications
You must be signed in to change notification settings - Fork 23
/
package.json
77 lines (77 loc) · 2.09 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
{
"name": "a2hs.js",
"version": "0.5.0",
"description": "A useful modern JavaScript solution that helps your website users to add (install) a progressive web application (PWA) to the Home screen of their mobile iOS device.",
"browserslist": [
"last 4 iOS major versions"
],
"scripts": {
"start": "parcel serve --cache-dir test/demo/.cache -d test/demo/dist test/demo/index.html --open",
"update": "npm outdated && npx npm-check-updates -u && npm install",
"build": "parcel build ./index.js",
"test": "jest --coverage && size-limit",
"size": "npm run build && size-limit"
},
"repository": {
"type": "git",
"url": "git+https://github.com/koddr/a2hs.js.git"
},
"keywords": [
"add to home",
"add website to home screen",
"add pwa to home screen",
"install to home screen",
"install pwa",
"ios progressive web app",
"ios pwa"
],
"author": "Vic Shóstak <[email protected]> (https://shostak.dev/)",
"license": "MIT",
"bugs": {
"url": "https://github.com/koddr/a2hs.js/issues",
"email": "[email protected]"
},
"homepage": "https://github.io/koddr/a2hs.js",
"devDependencies": {
"eslint": "^7.32.0",
"eslint-config-standard": "^16.0.3",
"eslint-plugin-es5": "^1.5.0",
"eslint-plugin-import": "^2.24.2",
"eslint-plugin-import-helpers": "^2.0.0",
"eslint-plugin-jest": "^28.2.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prefer-let": "^4.0.0",
"eslint-plugin-promise": "^7.0.0",
"eslint-plugin-security": "^3.0.0",
"jest": "^29.0.0",
"parcel": "^2.0.0-rc.0"
},
"eslintConfig": {
"rules": {
"node/no-unpublished-require": "off",
"es5/no-es6-static-methods": "off",
"node/no-missing-require": "off",
"func-style": "off"
},
"parserOptions": {
"ecmaVersion": 5,
"ecmaFeatures": {
"experimentalObjectRestSpread": "on"
}
}
},
"jest": {
"coverageThreshold": {
"global": {
"statements": 100
}
}
},
"size-limit": [
{
"path": "index.js",
"limit": "50 ms"
}
],
"dependencies": {}
}