forked from spotify/quickstart
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
108 lines (108 loc) · 2.89 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
98
99
100
101
102
103
104
105
106
107
108
{
"name": "quickstart",
"version": "1.1.0",
"description": "CommonJS module compiler for node.js and browsers",
"main": "./main.js",
"browser": {
"./main": "./browser",
"assert": "assert",
"buffer": "buffer",
"console": "console-browserify",
"constants": "constants-browserify",
"crypto": "crypto-browserify",
"domain": "domain-browser",
"events": "events",
"http": "http-browserify",
"https": "https-browserify",
"os": "os-browserify/browser",
"path": "path-browserify",
"punycode": "punycode",
"querystring": "querystring-es3",
"stream": "stream-browserify",
"_stream_duplex": "readable-stream/duplex",
"_stream_passthrough": "readable-stream/passthrough",
"_stream_readable": "readable-stream/readable",
"_stream_transform": "readable-stream/transform",
"_stream_writable": "readable-stream/writable",
"string_decoder": "string_decoder",
"sys": "util",
"timers": "timers-browserify",
"tty": "tty-browserify",
"url": "url",
"util": "util",
"vm": "vm-browserify",
"zlib": "browserify-zlib"
},
"bin": {
"quickstart": "./bin/quickstart"
},
"scripts": {
"test": "istanbul cover _mocha test -- -R spec"
},
"dependencies": {
"promise": "~5.0.0",
"prime": "^0.4.2",
"agent": "^0.2.0",
"pathogen": "^0.1.5",
"mout": "^0.9.1",
"esprima": "~1.2.1",
"escodegen": "^1.3.2",
"estraverse": "~1.5.0",
"escope": "~1.0.1",
"esmangle": "~1.0.1",
"microseconds": "0.0.2",
"cli-color": "~0.3.2",
"require-relative": "^0.8.7",
"minimist": "~0.1.0",
"util": "~0.10.3",
"assert": "~1.1.1",
"url": "~0.10.1",
"path-browserify": "0.0.0",
"buffer": "~2.3.0",
"https-browserify": "0.0.0",
"tty-browserify": "0.0.0",
"constants-browserify": "0.0.1",
"os-browserify": "~0.1.2",
"string_decoder": "~0.10.25-1",
"domain-browser": "~1.1.1",
"querystring-es3": "~0.2.1-0",
"punycode": "~1.2.4",
"events": "~1.0.1",
"stream-browserify": "~1.0.0",
"readable-stream": "~1.0.27-1",
"vm-browserify": "0.0.4",
"timers-browserify": "~1.0.1",
"console-browserify": "~1.1.0",
"http-browserify": "~1.3.2",
"browserify-zlib": "~0.1.4",
"crypto-browserify": "~2.1.8"
},
"devDependencies": {
"mocha": "^1.18.2",
"istanbul": "^0.2.9",
"chai": "~1.9.1",
"chai-as-promised": "~4.1.1"
},
"homepage": "http://spotify.github.io/quickstart",
"repository": "https://github.com/spotify/quickstart",
"author": {
"name": "Valerio Proietti",
"email": "[email protected]"
},
"contributors": [
{
"name": "Johannes Koggdal",
"email": "[email protected]"
},
{
"name": "Daniel Herzog",
"email": "[email protected]"
}
],
"licenses": [
{
"type": "Apache-2.0",
"url": "http://www.apache.org/licenses/LICENSE-2.0.html"
}
]
}