This repository has been archived by the owner on Sep 5, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
67 lines (67 loc) · 1.63 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
{
"name": "express-secure-handlebars",
"version": "2.1.0",
"licenses": [
{
"type": "BSD",
"url": "https://github.com/yahoo/express-secure-handlebars/blob/master/LICENSE"
}
],
"author": "Nera Liu",
"contributors": [
"Nera Liu <[email protected]>",
"Adonis Fung <[email protected]>",
"Albert Yu <[email protected]>"
],
"description": "Secure Express/Handlebars with Context Parser",
"repository": {
"type": "git",
"url": "[email protected]:yahoo/express-secure-handlebars.git"
},
"keywords": [
"context",
"parser",
"handlebars",
"express",
"xss",
"cross-site scripting",
"contextual escaping",
"output escaping",
"security"
],
"scripts": {
"hint": "grunt jshint",
"build": "npm install; grunt",
"clean": "grunt clean",
"test": "grunt test"
},
"dependencies": {
"express-handlebars": "^2.0.1",
"handlebars": "^3.0.3",
"object.assign": "^3.0.1",
"promise": "^7.0.3",
"secure-handlebars": "^1.1.1",
"xss-filters": "^1.2.4"
},
"devDependencies": {
"expect.js": "^0.3.1",
"express": "^4.12.*",
"grunt": "^0.4.5",
"grunt-cli": "0.1.*",
"grunt-contrib-clean": "^0.6.0",
"grunt-contrib-jshint": "^0.11.0",
"grunt-mocha-istanbul": "^2.3.0",
"mocha": "^2.3.4",
"istanbul": "^0.4.0",
"supertest": "^0.15.0"
},
"main": "./src/express-secure-handlebars.js",
"bugs": {
"url": "https://github.com/yahoo/express-secure-handlebars/issues"
},
"homepage": "https://github.com/yahoo/express-secure-handlebars",
"directories": {
"test": "tests"
},
"license": "BSD"
}