This repository has been archived by the owner on Jun 28, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 65
/
package.json
73 lines (73 loc) · 1.71 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": "page-lifecycle",
"version": "0.1.2",
"description": "A JavaScript library to observe Page Lifecycle API states: https://github.com/WICG/page-lifecycle",
"license": "Apache-2.0",
"main": "dist/lifecycle.es5.js",
"module": "dist/lifecycle.mjs",
"scripts": {
"test": "eslint *.js src/**/* test/*.mjs",
"build": "rollup -c"
},
"repository": {
"type": "git",
"url": "https://github.com/GoogleChromeLabs/page-lifecycle.git"
},
"bugs": {
"url": "https://github.com/GoogleChromeLabs/page-lifecycle/issues"
},
"homepage": "https://github.com/GoogleChromeLabs/page-lifecycle#readme",
"keywords": [
"page",
"lifecycle",
"unload",
"beforeunload",
"visibilityState",
"visibilitychange",
"active",
"passive",
"hidden",
"frozen",
"discarded",
"terminated"
],
"author": {
"name": "Philip Walton",
"email": "[email protected]",
"url": "http://philipwalton.com"
},
"devDependencies": {
"babel-core": "^6.26.3",
"babel-plugin-external-helpers": "^6.22.0",
"babel-preset-env": "^1.7.0",
"eslint": "^6.2.2",
"eslint-config-google": "^0.13.0",
"rollup": "^1.20.2",
"rollup-plugin-babel": "^4.3.3",
"rollup-plugin-multi-entry": "^2.1.0",
"rollup-plugin-replace": "^2.2.0",
"rollup-plugin-terser": "^5.1.1"
},
"eslintConfig": {
"root": true,
"env": {
"browser": true,
"es6": true,
"node": true,
"mocha": true
},
"globals": {
"assert": false,
"sinon": false,
"safari": false
},
"parserOptions": {
"ecmaVersion": 2018,
"sourceType": "module"
},
"extends": [
"eslint:recommended",
"google"
]
}
}