This repository has been archived by the owner on Aug 6, 2020. It is now read-only.
forked from bevry/domain-browser
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
97 lines (97 loc) · 2.52 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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
{
"name": "domain-browser",
"version": "1.1.7",
"description": "Node's domain module for the web browser. This is merely an evented try...catch with the same API as node, nothing more.",
"homepage": "https://github.com/bevry/domain-browser",
"license": "MIT",
"badges": {
"list": [
"travisci",
"npmversion",
"npmdownloads",
"daviddm",
"daviddmdev",
"---",
"slackin",
"patreon",
"gratipay",
"flattr",
"paypal",
"bitcoin",
"wishlist"
],
"config": {
"patreonUsername": "bevry",
"gratipayUsername": "bevry",
"flattrCode": "344188/balupton-on-Flattr",
"paypalButtonID": "QB8GQPZAH84N6",
"bitcoinURL": "https://bevry.me/bitcoin",
"wishlistURL": "https://bevry.me/wishlist",
"slackinURL": "https://slack.bevry.me"
}
},
"keywords": [
"domain",
"trycatch",
"try",
"catch",
"node-compat",
"ender.js",
"component",
"component.io",
"umd",
"amd",
"require.js",
"browser"
],
"author": "2013+ Bevry Pty Ltd <[email protected]> (http://bevry.me)",
"maintainers": [
"Benjamin Lupton <[email protected]> (http://balupton.com)"
],
"contributors": [
"Benjamin Lupton <[email protected]> (http://balupton.com)",
"Evan Solomon (http://evansolomon.me)",
"James Halliday <[email protected]> (http://substack.net/)",
"Guy Bedford <[email protected]> (twitter.com/guybedford)",
"Bogdan Chadkin <[email protected]> (https://github.com/TrySound)"
],
"bugs": {
"url": "https://github.com/bevry/domain-browser/issues"
},
"repository": {
"type": "git",
"url": "http://github.com/bevry/domain-browser.git"
},
"engines": {
"node": ">=0.4",
"npm": ">=1.2"
},
"browsers": true,
"main": "./index.js",
"jspm": {
"map": {
"./index.js": {
"node": "@node/domain"
}
}
},
"dependencies": {},
"devDependencies": {
"assert-helpers": "^4.1.0",
"eslint": "^1.10.3",
"joe": "^1.6.0",
"joe-reporter-console": "^1.2.1",
"projectz": "^1.0.8"
},
"scripts": {
"clean": "node --harmony nakefile.js clean",
"setup": "node --harmony nakefile.js setup",
"compile": "node --harmony nakefile.js compile",
"watch": "node --harmony nakefile.js watch",
"verify": "node --harmony nakefile.js verify",
"meta": "node --harmony nakefile.js meta",
"prepare": "node --harmony nakefile.js prepare",
"release": "node --harmony nakefile.js release",
"test": "node --harmony ./test.js"
}
}