forked from netzkolchose/node-ansiparser
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
30 lines (30 loc) · 887 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
{
"name": "node-ansiparser",
"version": "2.2.1",
"description": "A parser for ANSI escape codes.",
"main": "dist/ansiparser.js",
"keywords": [
"ansi",
"parser",
"terminal",
"escape sequence"
],
"author": "Joerg Breitbart <j.breitbart@netzkolchose.de>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/netzkolchose/node-ansiparser.git"
},
"devDependencies": {
"chai": "^3.5.0",
"coveralls": "^2.11.9",
"istanbul": "^0.4.4",
"mocha": "^2.5.3",
"uglify-js": "^2.7.0"
},
"scripts": {
"minify": "node_modules/uglify-js/bin/uglifyjs --compress --mangle -- dist/ansiparser.js > dist/ansiparser.min.js",
"test": "node_modules/istanbul/lib/cli.js cover node_modules/mocha/bin/_mocha -- -R spec",
"coveralls": "cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js"
}
}