put license for plugins (nw)

This commit is contained in:
Miodrag Milanovic 2016-03-05 11:03:34 +01:00
parent 80b569fb2b
commit fafeeb095a
4 changed files with 11 additions and 1 deletions

3
plugins/README.md Normal file
View file

@ -0,0 +1,3 @@
# **Plugins** #
LUA plugins contains code from various sources so license is per file.

View file

@ -1,3 +1,5 @@
-- license:BSD-3-Clause
-- copyright-holders:Miodrag Milanovic
require('lfs')
local cwd = lfs.currentdir()
package.path = cwd .. "/plugins/?.lua;" .. cwd .. "/plugins/?/init.lua"

View file

@ -1,8 +1,10 @@
-- license:BSD-3-Clause
-- copyright-holders:Miodrag Milanovic
local exports = {}
exports.name = "dummy"
exports.version = "0.0.1"
exports.description = "A dummy example"
exports.license = "MIT"
exports.license = "The BSD 3-Clause License"
exports.author = { name = "Miodrag Milanovic" }
local dummy = exports

View file

@ -1,3 +1,6 @@
-- license:MIT
-- copyright-holders:David Kolf
local exports = {}
exports.name = "luvit/json"
exports.version = "2.5.0"