forked from stealjs/steal
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
144 lines (144 loc) · 4.03 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
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
{
"name": "steal",
"description": "Gets JavaScript.",
"version": "1.0.4",
"author": {
"name": "Bitovi",
"email": "contact@bitovi.com",
"web": "http://bitovi.com/"
},
"scripts": {
"ui": "grunt build && node test/test-sauce-labs.js",
"http-server": "http-server -p 3000 --silent",
"test": "grunt test --stack",
"test-node": "grunt simplemocha",
"test-windows": "grunt test-windows --stack"
},
"dependencies": {
"assert": "~1.4.1",
"buffer": "~5.0.2",
"console-browserify": "~1.1.0",
"constants-browserify": "~1.0.0",
"crypto-browserify": "~3.11.0",
"domain-browser": "~1.1.2",
"events": "~1.1.1",
"http-browserify": "~1.7.0",
"https-browserify": "~0.0.0",
"os-browserify": "~0.2.1",
"path-browserify": "~0.0.0",
"process": "~0.11.9",
"punycode": "~2.0.1",
"resolve": "^1.1.7",
"steal-systemjs": "0.18.5",
"string_decoder": "~0.10.31",
"tty-browserify": "~0.0.0",
"vm-browserify": "~0.0.4",
"zlib-browserify": "~0.0.3"
},
"devDependencies": {
"async": "^2.1.4",
"babel-standalone": "6.19.0",
"grunt": "~1.0.1",
"grunt-cli": "^1.2.0",
"grunt-contrib-concat": "~1.0.1",
"grunt-contrib-copy": "~1.0.0",
"grunt-contrib-jshint": "~1.1.0",
"grunt-contrib-uglify": "~2.0.0",
"grunt-contrib-watch": "~1.0.0",
"grunt-release": "^0.14.0",
"grunt-simple-mocha": "^0.4.0",
"http-server": "^0.9.0",
"jquery": "^3.1.1",
"qunitjs": "1.12.0",
"saucelabs": "^1.3.0",
"steal-env": "^1.0.0",
"steal-es6-module-loader": "0.17.13",
"steal-npm": "1.0.2",
"steal-qunit": "^1.0.0",
"system-bower": "stealjs/system-bower#v0.2.1",
"system-live-reload": "1.5.3",
"system-trace": "0.2.7",
"testee": "^0.3.0",
"traceur": "0.0.111",
"traceur-runtime": "jmcriffey/bower-traceur-runtime#0.0.91",
"wd": "^1.0.0"
},
"globalBrowser": {
"console": "console-browserify",
"constants": "constants-browserify",
"crypto": "crypto-browserify",
"http": "http-browserify",
"buffer": "buffer",
"os": "os-browserify",
"vm": "vm-browserify",
"zlib": "zlib-browserify",
"assert": "assert",
"child_process": "./ext/builtin/child_process.js",
"cluster": "./ext/builtin/cluster.js",
"dgram": "./ext/builtin/dgram.js",
"dns": "./ext/builtin/dns.js",
"domain": "domain-browser",
"events": "events",
"fs": "./ext/builtin/fs.js",
"https": "https-browserify",
"module": "./ext/builtin/module.js",
"net": "./ext/builtin/net.js",
"path": "path-browserify",
"process": "process",
"querystring": "./ext/builtin/querystring.js",
"readline": "./ext/builtin/readline.js",
"repl": "./ext/builtin/repl.js",
"stream": "./ext/builtin/stream.js",
"string_decoder": "string_decoder",
"sys": "./ext/builtin/sys.js",
"timers": "./ext/builtin/timers.js",
"tls": "./ext/builtin/tls.js",
"tty": "tty-browserify",
"url": "./ext/builtin/url.js",
"util": "./ext/builtin/util.js",
"_stream_readable": "./ext/builtin/_stream_readable.js",
"_stream_writable": "./ext/builtin/_stream_writable.js",
"_stream_duplex": "./ext/builtin/_stream_duplex.js",
"_stream_transform": "./ext/builtin/_stream_transform.js",
"_stream_passthrough": "./ext/builtin/_stream_passthrough.js"
},
"system": {
"npmDependencies": [
"console-browserify",
"constants-browserify",
"crypto-browserify",
"http-browserify",
"buffer",
"os-browserify",
"vm-browserify",
"zlib-browserify",
"assert",
"domain-browser",
"events",
"https-browserify",
"path-browserify",
"string_decoder",
"tty-browserify",
"process",
"punycode"
]
},
"repository": {
"type": "git",
"url": "git://github.com/stealjs/steal.git"
},
"licenses": [
{
"type": "MIT",
"url": "http://opensource.org/licenses/mit-license.php"
}
],
"main": "main",
"keywords": [
"stealjs",
"donejs",
"modules",
"es6",
"bundling"
]
}