~stephen-stewart/+junk/add-grunt

« back to all changes in this revision

Viewing changes to node_modules/grunt-contrib-cssmin/node_modules/chalk/node_modules/strip-ansi/package.json

  • Committer: Stephen Stewart
  • Date: 2014-05-13 01:26:55 UTC
  • Revision ID: stephen.stewart@canonical.com-20140513012655-wx8xbwcdohofxoyj
add --production node_modules

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
{
 
2
  "name": "strip-ansi",
 
3
  "version": "0.1.1",
 
4
  "description": "Strip ANSI escape codes (used for colorizing strings in the terminal)",
 
5
  "license": "MIT",
 
6
  "bin": {
 
7
    "strip-ansi": "cli.js"
 
8
  },
 
9
  "repository": {
 
10
    "type": "git",
 
11
    "url": "git://github.com/sindresorhus/strip-ansi"
 
12
  },
 
13
  "author": {
 
14
    "name": "Sindre Sorhus",
 
15
    "email": "sindresorhus@gmail.com",
 
16
    "url": "http://sindresorhus.com"
 
17
  },
 
18
  "engines": {
 
19
    "node": ">=0.8.0"
 
20
  },
 
21
  "scripts": {
 
22
    "test": "mocha"
 
23
  },
 
24
  "files": [
 
25
    "index.js",
 
26
    "cli.js"
 
27
  ],
 
28
  "keywords": [
 
29
    "strip",
 
30
    "trim",
 
31
    "remove",
 
32
    "ansi",
 
33
    "styles",
 
34
    "color",
 
35
    "colour",
 
36
    "colors",
 
37
    "terminal",
 
38
    "console",
 
39
    "cli",
 
40
    "string",
 
41
    "tty",
 
42
    "escape",
 
43
    "formatting",
 
44
    "rgb",
 
45
    "256",
 
46
    "shell",
 
47
    "xterm",
 
48
    "log",
 
49
    "logging",
 
50
    "command-line",
 
51
    "text"
 
52
  ],
 
53
  "devDependencies": {
 
54
    "mocha": "~1.x"
 
55
  },
 
56
  "readme": "# strip-ansi [![Build Status](https://secure.travis-ci.org/sindresorhus/strip-ansi.png?branch=master)](http://travis-ci.org/sindresorhus/strip-ansi)\n\n> Strip [ANSI escape codes](http://en.wikipedia.org/wiki/ANSI_escape_code#Colors_and_Styles) (used for colorizing strings in the terminal)\n\nUsed in the terminal color module [chalk](https://github.com/sindresorhus/chalk).\n\n\n## Install\n\nInstall locally with [npm](https://npmjs.org/package/strip-ansi):\n\n```\nnpm install --save strip-ansi\n```\n\nOr globally if you want to use it as a CLI app:\n\n```\nnpm install --global strip-ansi\n```\n\nYou can then use it in your Terminal like:\n\n```\nstrip-ansi file-with-color-codes\n```\n\nOr pipe something to it:\n\n```\nls | strip-ansi\n```\n\n\n## Example\n\n```js\nvar stripAnsi = require('strip-ansi');\nstripAnsi('\\x1b[4mcake\\x1b[0m');\n//=> cake\n```\n\n\n## License\n\nMIT © [Sindre Sorhus](http://sindresorhus.com)\n",
 
57
  "readmeFilename": "readme.md",
 
58
  "bugs": {
 
59
    "url": "https://github.com/sindresorhus/strip-ansi/issues"
 
60
  },
 
61
  "homepage": "https://github.com/sindresorhus/strip-ansi",
 
62
  "_id": "strip-ansi@0.1.1",
 
63
  "_from": "strip-ansi@~0.1.0"
 
64
}