-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy pathpackage.json
47 lines (47 loc) · 1.01 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
{
"name": "on-load",
"version": "5.0.0",
"description": "On load/unload events for DOM elements using a MutationObserver",
"main": "server.js",
"browser": {
"assert": "nanoassert",
"./server.js": "./index.js"
},
"scripts": {
"start": "wzrd test.js:bundle.js",
"test": "standard && browserify test.js | tape-run"
},
"repository": {
"type": "git",
"url": "git://github.com/shama/on-load"
},
"files": [
"index.js"
],
"keywords": [
"html",
"dom",
"element",
"onload",
"unload",
"yo-yo"
],
"author": "Kyle Robinson Young <kyle@dontkry.com> (http://dontkry.com)",
"license": "MIT",
"bugs": {
"url": "https://github.com/shama/on-load/issues"
},
"homepage": "https://github.com/shama/on-load",
"dependencies": {
"global": "^4.4.0",
"nanoassert": "^2.0.0"
},
"devDependencies": {
"browserify": "^17.0.0",
"standard": "^17.0.0",
"tape": "^5.6.3",
"tape-run": "^10.0.0",
"wzrd": "^1.5.0",
"yo-yo": "^1.4.1"
}
}