forked from OnceDoc/onceio
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 2.8 KB
/
package.json
File metadata and controls
63 lines (63 loc) · 2.8 KB
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
{
"name": "dot",
"description": "Concise and fast javascript templating compatible with nodejs and other javascript environments",
"keywords": [
"template",
"fast",
"simple",
"templating"
],
"version": "1.0.0",
"main": "index",
"bin": {
"dottojs": "./bin/dottojs"
},
"homepage": "http://github.com/olado/doT",
"repository": {
"type": "git",
"url": "git://github.com/olado/doT.git"
},
"author": {
"name": "Laura Doktorova",
"email": "ldoktorova@gmail.com"
},
"engines": [
"node >=0.2.6"
],
"scripts": {
"test": "mocha"
},
"dependencies": {},
"devDependencies": {
"commander": "*",
"uglify-js": "*",
"mkdirp": "*",
"mocha": "*",
"jshint": "*"
},
"_id": "dot@1.0.0",
"dist": {
"shasum": "d3bb10a12c923590d23d15f77b15046a67e20683",
"tarball": "http://registry.npmjs.org/dot/-/dot-1.0.0.tgz"
},
"_npmVersion": "1.1.63",
"_npmUser": {
"name": "olado",
"email": "ldoktorova@gmail.com"
},
"maintainers": [
{
"name": "olado",
"email": "ldoktorova@gmail.com"
}
],
"directories": {},
"_shasum": "d3bb10a12c923590d23d15f77b15046a67e20683",
"_from": "dot@1.0.0",
"_resolved": "https://registry.npmjs.org/dot/-/dot-1.0.0.tgz",
"readme": "Created in search of the fastest and concise JavaScript templating function with emphasis on performance under V8 and nodejs. It shows great performance for both nodejs and browsers.\n\ndoT.js is fast, small and has no dependencies.\n\n## Features:\n custom delimiters\n runtime evaluation\n runtime interpolation\n compile-time evaluation\n partials support\n conditionals support\n array iterators\n encoding\n control whitespace - strip or preserve\n streaming friendly\n use it as logic-less or with logic, it is up to you\n\n## Docs, live playground and samples:\n\nhttp://olado.github.com/doT (todo: update docs with new features added in version 1.0.0)\n\n## New in version 1.0.0:\n\nCompile tool to compile dot templates into js (thanks to @Katahdin https://github.com/Katahdin/dot-packer ):\n\n\t./bin/dottojs -s examples/views -d out/views\n\nNode module now supports auto-compilation of dot templates from specified path: (see index.js)\n\n\tvar dots = require(\"dot\").process({ path: \"./views\"});\n\nAdded parameters support in partials:\n\n\t{{##def.macro:param:\n\t\t<div>{{=param.foo}}</div>\n\t#}}\n\n\t{{#def.macro:myvariable}}\n\n## Notes:\n doU.js is here only so that legacy external tests do not break. Use doT.js.\n doT.js with doT.templateSettings.append=false provides the same performance as doU.js.\n\n## Author:\nLaura Doktorova @olado\n\n## License:\ndoT is licensed under the MIT License. (See LICENSE-DOT)\n",
"readmeFilename": "README.md",
"bugs": {
"url": "https://github.com/olado/doT/issues"
}
}