forked from alanshaw/stripify
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 936 Bytes
/
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
{
"name": "stripify",
"version": "4.0.0",
"description": "Browserify transform that strips console.log lines from your code",
"main": "stripify.js",
"bin": "bin/stripify.js",
"scripts": {
"test": "tape test/test.js"
},
"repository": {
"type": "git",
"url": "git://github.com/alanshaw/stripify.git"
},
"keywords": [
"browserify",
"browserify-transform",
"strip",
"debug",
"debugger",
"log",
"logging",
"console",
"console.log",
"console.debug",
"console.info",
"console.warn",
"console.error"
],
"author": "Alan Shaw",
"license": "MIT",
"bugs": {
"url": "https://github.com/alanshaw/stripify/issues"
},
"homepage": "https://github.com/alanshaw/stripify",
"dependencies": {
"falafel": "^1.0.1",
"minimist": "^1.1.0",
"through2": "^2.0.0"
},
"devDependencies": {
"concat-stream": "^1.4.4",
"tape": "^4.4.0"
}
}