Express addition
This commit is contained in:
13
node_modules/doctypes/.npmignore
generated
vendored
Normal file
13
node_modules/doctypes/.npmignore
generated
vendored
Normal file
@@ -0,0 +1,13 @@
|
||||
lib-cov
|
||||
*.seed
|
||||
*.log
|
||||
*.csv
|
||||
*.dat
|
||||
*.out
|
||||
*.pid
|
||||
*.gz
|
||||
pids
|
||||
logs
|
||||
results
|
||||
npm-debug.log
|
||||
node_modules
|
||||
3
node_modules/doctypes/.travis.yml
generated
vendored
Normal file
3
node_modules/doctypes/.travis.yml
generated
vendored
Normal file
@@ -0,0 +1,3 @@
|
||||
language: node_js
|
||||
node_js:
|
||||
- "0.10"
|
||||
14
node_modules/doctypes/HISTORY.md
generated
vendored
Normal file
14
node_modules/doctypes/HISTORY.md
generated
vendored
Normal file
@@ -0,0 +1,14 @@
|
||||
# Change log
|
||||
|
||||
## 1.1.0 / 2016-08-10
|
||||
|
||||
- Bump minor (to fix a packaging error in 1.0.1)
|
||||
- Update plist doctype
|
||||
|
||||
## 1.0.1 / 2016-08-09
|
||||
|
||||
- Add property list doctype
|
||||
|
||||
## 1.0.0 / 2015-01-22
|
||||
|
||||
- Initial release
|
||||
19
node_modules/doctypes/LICENSE
generated
vendored
Normal file
19
node_modules/doctypes/LICENSE
generated
vendored
Normal file
@@ -0,0 +1,19 @@
|
||||
Copyright (c) 2015 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.
|
||||
24
node_modules/doctypes/README.md
generated
vendored
Normal file
24
node_modules/doctypes/README.md
generated
vendored
Normal file
@@ -0,0 +1,24 @@
|
||||
# doctypes
|
||||
|
||||
Shorthands for commonly used doctypes
|
||||
|
||||
[](https://travis-ci.org/pugjs/doctypes)
|
||||
[](https://www.npmjs.org/package/doctypes)
|
||||
|
||||
## Installation
|
||||
|
||||
npm install doctypes
|
||||
|
||||
## Usage
|
||||
|
||||
```js
|
||||
var assert = require('assert');
|
||||
var doctypes = require('doctypes');
|
||||
|
||||
assert(doctypes['html'] === '<!DOCTYPE html>');
|
||||
assert(doctypes['xml'] === '<?xml version="1.0" encoding="utf-8" ?>');
|
||||
```
|
||||
|
||||
## License
|
||||
|
||||
MIT
|
||||
13
node_modules/doctypes/index.js
generated
vendored
Normal file
13
node_modules/doctypes/index.js
generated
vendored
Normal file
@@ -0,0 +1,13 @@
|
||||
'use strict';
|
||||
|
||||
module.exports = {
|
||||
'html': '<!DOCTYPE html>',
|
||||
'xml': '<?xml version="1.0" encoding="utf-8" ?>',
|
||||
'transitional': '<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">',
|
||||
'strict': '<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">',
|
||||
'frameset': '<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Frameset//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-frameset.dtd">',
|
||||
'1.1': '<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">',
|
||||
'basic': '<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML Basic 1.1//EN" "http://www.w3.org/TR/xhtml-basic/xhtml-basic11.dtd">',
|
||||
'mobile': '<!DOCTYPE html PUBLIC "-//WAPFORUM//DTD XHTML Mobile 1.2//EN" "http://www.openmobilealliance.org/tech/DTD/xhtml-mobile12.dtd">',
|
||||
'plist': '<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">'
|
||||
};
|
||||
50
node_modules/doctypes/package.json
generated
vendored
Normal file
50
node_modules/doctypes/package.json
generated
vendored
Normal file
@@ -0,0 +1,50 @@
|
||||
{
|
||||
"_from": "doctypes@^1.1.0",
|
||||
"_id": "doctypes@1.1.0",
|
||||
"_inBundle": false,
|
||||
"_integrity": "sha1-6oCxBqh1OHdOijpKWv4pPeSJ4Kk=",
|
||||
"_location": "/doctypes",
|
||||
"_phantomChildren": {},
|
||||
"_requested": {
|
||||
"type": "range",
|
||||
"registry": true,
|
||||
"raw": "doctypes@^1.1.0",
|
||||
"name": "doctypes",
|
||||
"escapedName": "doctypes",
|
||||
"rawSpec": "^1.1.0",
|
||||
"saveSpec": null,
|
||||
"fetchSpec": "^1.1.0"
|
||||
},
|
||||
"_requiredBy": [
|
||||
"/pug-code-gen"
|
||||
],
|
||||
"_resolved": "https://registry.npmjs.org/doctypes/-/doctypes-1.1.0.tgz",
|
||||
"_shasum": "ea80b106a87538774e8a3a4a5afe293de489e0a9",
|
||||
"_spec": "doctypes@^1.1.0",
|
||||
"_where": "D:\\SOURCE\\gittesting\\node_modules\\pug-code-gen",
|
||||
"author": {
|
||||
"name": "ForbesLindesay"
|
||||
},
|
||||
"bugs": {
|
||||
"url": "https://github.com/pugjs/doctypes/issues"
|
||||
},
|
||||
"bundleDependencies": false,
|
||||
"dependencies": {},
|
||||
"deprecated": false,
|
||||
"description": "Shorthands for commonly used doctypes",
|
||||
"devDependencies": {},
|
||||
"homepage": "https://github.com/pugjs/doctypes#readme",
|
||||
"keywords": [
|
||||
"doctype"
|
||||
],
|
||||
"license": "MIT",
|
||||
"name": "doctypes",
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "git+https://github.com/pugjs/doctypes.git"
|
||||
},
|
||||
"scripts": {
|
||||
"test": "node test"
|
||||
},
|
||||
"version": "1.1.0"
|
||||
}
|
||||
9
node_modules/doctypes/test.js
generated
vendored
Normal file
9
node_modules/doctypes/test.js
generated
vendored
Normal file
@@ -0,0 +1,9 @@
|
||||
'use strict';
|
||||
|
||||
var assert = require('assert');
|
||||
var doctypes = require('./');
|
||||
|
||||
assert(doctypes['html'] === '<!DOCTYPE html>');
|
||||
assert(doctypes['xml'] === '<?xml version="1.0" encoding="utf-8" ?>');
|
||||
|
||||
console.log('tests passed');
|
||||
Reference in New Issue
Block a user