mirror of
https://gitlab.com/octtspacc/staticoso
synced 2025-06-05 22:09:23 +02:00
Transition to monorepo on a new Dev branch
This commit is contained in:
11
App/Source/node_modules/pug-parser/HISTORY.md
generated
vendored
Normal file
11
App/Source/node_modules/pug-parser/HISTORY.md
generated
vendored
Normal file
@ -0,0 +1,11 @@
|
||||
2.0.1 / 2016-06-01
|
||||
==================
|
||||
|
||||
* Add a brief API introduction to README
|
||||
|
||||
2.0.0 / 2016-05-14
|
||||
==================
|
||||
|
||||
* Take the `filename` as an option rather than special casing it. This means that parse only takes 2 arguments rather than 3
|
||||
* Add type checking on arguments
|
||||
* Treat the legacy `.jade` extension as `.pug` rather than a raw include
|
19
App/Source/node_modules/pug-parser/LICENSE
generated
vendored
Normal file
19
App/Source/node_modules/pug-parser/LICENSE
generated
vendored
Normal file
@ -0,0 +1,19 @@
|
||||
Copyright (c) 2014 Forbes Lindesay
|
||||
|
||||
Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||
of this software and associated documentation files (the "Software"), to deal
|
||||
in the Software without restriction, including without limitation the rights
|
||||
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
||||
copies of the Software, and to permit persons to whom the Software is
|
||||
furnished to do so, subject to the following conditions:
|
||||
|
||||
The above copyright notice and this permission notice shall be included in
|
||||
all copies or substantial portions of the Software.
|
||||
|
||||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
||||
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
||||
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
||||
THE SOFTWARE.
|
1192
App/Source/node_modules/pug-parser/index.js
generated
vendored
Normal file
1192
App/Source/node_modules/pug-parser/index.js
generated
vendored
Normal file
File diff suppressed because it is too large
Load Diff
23
App/Source/node_modules/pug-parser/lib/inline-tags.js
generated
vendored
Normal file
23
App/Source/node_modules/pug-parser/lib/inline-tags.js
generated
vendored
Normal file
@ -0,0 +1,23 @@
|
||||
'use strict';
|
||||
|
||||
module.exports = [
|
||||
'a'
|
||||
, 'abbr'
|
||||
, 'acronym'
|
||||
, 'b'
|
||||
, 'br'
|
||||
, 'code'
|
||||
, 'em'
|
||||
, 'font'
|
||||
, 'i'
|
||||
, 'img'
|
||||
, 'ins'
|
||||
, 'kbd'
|
||||
, 'map'
|
||||
, 'samp'
|
||||
, 'small'
|
||||
, 'span'
|
||||
, 'strong'
|
||||
, 'sub'
|
||||
, 'sup'
|
||||
];
|
26
App/Source/node_modules/pug-parser/package.json
generated
vendored
Normal file
26
App/Source/node_modules/pug-parser/package.json
generated
vendored
Normal file
@ -0,0 +1,26 @@
|
||||
{
|
||||
"name": "pug-parser",
|
||||
"version": "5.0.1",
|
||||
"description": "The pug parser (takes an array of tokens and converts it to an abstract syntax tree)",
|
||||
"keywords": [
|
||||
"pug"
|
||||
],
|
||||
"dependencies": {
|
||||
"pug-error": "^1.3.3",
|
||||
"token-stream": "0.0.1"
|
||||
},
|
||||
"devDependencies": {
|
||||
"get-repo": "^1.0.0"
|
||||
},
|
||||
"files": [
|
||||
"lib/inline-tags.js",
|
||||
"index.js"
|
||||
],
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "https://github.com/pugjs/pug/tree/master/packages/pug-parser"
|
||||
},
|
||||
"author": "ForbesLindesay",
|
||||
"license": "MIT",
|
||||
"gitHead": "1bdf628a70fda7a0d840c52f3abce54b1c6b0130"
|
||||
}
|
Reference in New Issue
Block a user