-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
54 lines (54 loc) · 1.13 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
{
"name": "consolify",
"version": "2.2.1",
"keywords": [
"browser",
"console",
"stdout",
"ansi",
"color",
"browserify-plugin"
],
"description": "Turn your browser window into a console",
"author": "Maximilian Antoni (http://maxantoni.de)",
"contributors": [
"Jonny Reeves <[email protected]>"
],
"homepage": "https://github.com/mantoni/consolify",
"main": "./lib/consolify.js",
"browser": "./lib/browser.js",
"engines": {
"node": ">=0.10"
},
"scripts": {
"watch": "mocha --watch",
"lint": "jslint --editon=latest --color \"**/*.js\"",
"pretest": "npm run lint",
"test": "mocha"
},
"dependencies": {
"through2": "^4.0.2",
"browser-reload": "^1.1.0",
"brout": "^1.1.0",
"source-mapper": "^2.0.0",
"ansi_up": "^5.1.0"
},
"devDependencies": {
"jslint": "^0.12.1",
"mocha": "^9.1.3",
"browserify": "^17.0.0",
"tmp": "^0.2.1"
},
"repository": {
"type": "git",
"url": "https://github.com/mantoni/consolify.git"
},
"files": [
"bin",
"lib",
"README.md",
"CHANGES.md",
"LICENSE"
],
"license": "MIT"
}