-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.13 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.13 KB
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
{
"name": "prevent-unload",
"version": "2.0.0",
"description": "Prevent page unloading from the user's action",
"author": "Plusb Preco <plusb21@gmail.com>",
"main": "lib/index.js",
"scripts": {
"prepublish": "npm run build",
"prebuild": "npm run clean",
"test": "eslint . && ava",
"build": "babel --out-dir lib src",
"clean": "rimraf lib"
},
"license": "MIT",
"homepage": "https://github.com/preco21/prevent-unload#readme",
"repository": "preco21/prevent-unload",
"bugs": {
"url": "https://github.com/preco21/prevent-unload/issues"
},
"files": [
"lib"
],
"keywords": [
"beforeunload",
"page",
"before",
"unload",
"browser"
],
"devDependencies": {
"ava": "^0.19.0",
"babel-cli": "^6.24.0",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-preset-env": "^1.3.2",
"babel-register": "^6.24.1",
"eslint": "^4.5.0",
"eslint-config-prev": "^6.0.0",
"jsdom": "^9.12.0",
"rimraf": "^2.6.1",
"sinon": "^2.1.0"
},
"ava": {
"require": [
"babel-register",
"./test/helpers/browser-env"
],
"babel": "inherit"
}
}