comments. license.
This commit is contained in:
parent
f13f1242b2
commit
ac6b54c181
3
LICENSE
3
LICENSE
|
@ -1,4 +1,5 @@
|
|||
Copyright (c) 2013, Christopher Jeffrey (https://github.com/chjj/)
|
||||
Copyright (c) 2013-2015, Christopher Jeffrey and contributors
|
||||
https://github.com/chjj/
|
||||
|
||||
Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||
of this software and associated documentation files (the "Software"), to deal
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
/**
|
||||
* Blessed
|
||||
* A curses-like library for node.js.
|
||||
* Copyright (c) 2013-2015, Christopher Jeffrey (MIT License).
|
||||
* Copyright (c) 2013-2015, Christopher Jeffrey and contributors (MIT License).
|
||||
* https://github.com/chjj/blessed
|
||||
*/
|
||||
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
/**
|
||||
* colors.js - color-related functions for blessed.
|
||||
* Copyright (c) 2013-2015, Christopher Jeffrey (MIT License)
|
||||
* Copyright (c) 2013-2015, Christopher Jeffrey and contributors (MIT License).
|
||||
* https://github.com/chjj/blessed
|
||||
*/
|
||||
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
/**
|
||||
* events.js - event emitter for blessed
|
||||
* Copyright (c) 2013-2015, Christopher Jeffrey (MIT License)
|
||||
* Copyright (c) 2013-2015, Christopher Jeffrey and contributors (MIT License).
|
||||
* https://github.com/chjj/blessed
|
||||
*/
|
||||
|
||||
|
|
|
@ -1,3 +1,10 @@
|
|||
/**
|
||||
* Blessed
|
||||
* A curses-like library for node.js.
|
||||
* Copyright (c) 2013-2015, Christopher Jeffrey and contributors (MIT License).
|
||||
* https://github.com/chjj/blessed
|
||||
*/
|
||||
|
||||
var net = require('net');
|
||||
var fs = require('fs');
|
||||
var EventEmitter = require('events').EventEmitter;
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
/**
|
||||
* program.js - basic curses-like functionality for blessed.
|
||||
* Copyright (c) 2013-2015, Christopher Jeffrey (MIT License).
|
||||
* Copyright (c) 2013-2015, Christopher Jeffrey and contributors (MIT License).
|
||||
* https://github.com/chjj/blessed
|
||||
*/
|
||||
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
/**
|
||||
* tput.js - parse and compile terminfo caps to javascript.
|
||||
* Copyright (c) 2013-2015, Christopher Jeffrey (MIT License)
|
||||
* Copyright (c) 2013-2015, Christopher Jeffrey and contributors (MIT License).
|
||||
* https://github.com/chjj/blessed
|
||||
*/
|
||||
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
/**
|
||||
* widget.js - high-level interface for blessed
|
||||
* Copyright (c) 2013-2015, Christopher Jeffrey (MIT License)
|
||||
* Copyright (c) 2013-2015, Christopher Jeffrey and contributors (MIT License).
|
||||
* https://github.com/chjj/blessed
|
||||
*/
|
||||
|
||||
|
|
Loading…
Reference in New Issue