1 |
3a515b92
|
cagy
|
{
|
2 |
|
|
"name": "console-browserify",
|
3 |
|
|
"version": "1.2.0",
|
4 |
|
|
"description": "Emulate console for all the browsers",
|
5 |
|
|
"keywords": [],
|
6 |
|
|
"author": "Raynos <raynos2@gmail.com>",
|
7 |
|
|
"repository": "git://github.com/browserify/console-browserify.git",
|
8 |
|
|
"main": "index",
|
9 |
|
|
"homepage": "https://github.com/browserify/console-browserify",
|
10 |
|
|
"contributors": [
|
11 |
|
|
{
|
12 |
|
|
"name": "Raynos"
|
13 |
|
|
}
|
14 |
|
|
],
|
15 |
|
|
"bugs": {
|
16 |
|
|
"url": "https://github.com/browserify/console-browserify/issues",
|
17 |
|
|
"email": "raynos2@gmail.com"
|
18 |
|
|
},
|
19 |
|
|
"devDependencies": {
|
20 |
|
|
"tape": "^2.12.3",
|
21 |
|
|
"jsonify": "0.0.0",
|
22 |
|
|
"tap-spec": "^0.1.8",
|
23 |
|
|
"run-browser": "^1.3.0",
|
24 |
|
|
"tap-dot": "^0.2.1"
|
25 |
|
|
},
|
26 |
|
|
"licenses": [
|
27 |
|
|
{
|
28 |
|
|
"type": "MIT",
|
29 |
|
|
"url": "http://github.com/browserify/console-browserify/raw/master/LICENSE"
|
30 |
|
|
}
|
31 |
|
|
],
|
32 |
|
|
"scripts": {
|
33 |
|
|
"test": "node ./test/index.js | tap-spec",
|
34 |
|
|
"dot": "node ./test/index.js | tap-dot",
|
35 |
|
|
"start": "node ./index.js",
|
36 |
|
|
"cover": "istanbul cover --report none --print detail ./test/index.js",
|
37 |
|
|
"view-cover": "istanbul report html && google-chrome ./coverage/index.html",
|
38 |
|
|
"browser": "run-browser test/index.js",
|
39 |
|
|
"phantom": "run-browser test/index.js -b | tap-spec",
|
40 |
|
|
"build": "browserify test/index.js -o test/static/bundle.js",
|
41 |
|
|
"testem": "testem"
|
42 |
|
|
},
|
43 |
|
|
"testling": {
|
44 |
|
|
"files": "test/index.js",
|
45 |
|
|
"browsers": [
|
46 |
|
|
"ie/8..latest",
|
47 |
|
|
"firefox/16..latest",
|
48 |
|
|
"firefox/nightly",
|
49 |
|
|
"chrome/22..latest",
|
50 |
|
|
"chrome/canary",
|
51 |
|
|
"opera/12..latest",
|
52 |
|
|
"opera/next",
|
53 |
|
|
"safari/5.1..latest",
|
54 |
|
|
"ipad/6.0..latest",
|
55 |
|
|
"iphone/6.0..latest",
|
56 |
|
|
"android-browser/4.2..latest"
|
57 |
|
|
]
|
58 |
|
|
}
|
59 |
|
|
}
|