-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 1.31 KB
/
package.json
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
{
"name": "ejs-promise",
"description": "Embedded JavaScript templates with streaming render support",
"keywords": [
"template",
"engine",
"ejs",
"stream"
],
"version": "0.3.3",
"author": "Mmis1000 <mmis1000@yahoo.com.tw> (https://mmis1000.io)",
"contributors": [
"Timothy Gu <timothygu99@gmail.com> (https://timothygu.github.io)",
"Mmis1000 <mmis1000@yahoo.com.tw> (https://mmis1000.io)"
],
"license": "Apache-2.0",
"main": "./lib/ejs.js",
"repository": {
"type": "git",
"url": "git@github.com:mmis1000/ejs-promise.git"
},
"bugs": "https://github.com/mmis1000/ejs-promise/issues",
"homepage": "https://github.com/mmis1000/ejs-promise",
"dependencies": {},
"devDependencies": {
"browserify": "^8.0.3",
"co-mocha": "^1.1.2",
"istanbul": "~0.3.5",
"jake": "^8.0.0",
"jsdoc": "^3.3.0-beta1",
"lru-cache": "^2.5.0",
"mocha": "^2.1.0",
"rimraf": "^2.2.8",
"uglify-js": "mishoo/UglifyJS2#harmony"
},
"engines": {
"node": ">=0.10.0"
},
"scripts": {
"test": "mocha",
"sample": "npm install express && node sample/index.js",
"coverage": "istanbul cover node_modules/mocha/bin/_mocha",
"doc": "rimraf out && jsdoc -c jsdoc.json lib/* docs/jsdoc/*",
"devdoc": "rimraf out && jsdoc -p -c jsdoc.json lib/* docs/jsdoc/*"
}
}