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 13
/
Copy pathpackage.json
76 lines (76 loc) · 1.83 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
68
69
70
71
72
73
74
75
76
{
"name": "secure-handlebars",
"version": "1.2.1",
"author": "Nera Liu",
"contributors": [
"Nera Liu <[email protected]>",
"Adonis Fung <[email protected]>",
"Albert Yu <[email protected]>"
],
"description": "To automatically apply context-sensitive XSS output filtering for Handlebars",
"preferGlobal": "true",
"bin": {
"handlebarspp": "bin/handlebarspp"
},
"repository": {
"type": "git",
"url": "[email protected]:yahoo/secure-handlebars.git"
},
"keywords": [
"xss",
"security",
"escape",
"encode",
"filter",
"context",
"html5",
"handlebars",
"parser",
"precompiler"
],
"scripts": {
"hint": "grunt jshint",
"build": "npm install; grunt",
"clean": "grunt clean",
"test": "grunt test"
},
"dependencies": {
"bluebird": "^3.4.6",
"context-parser": "^2.0.1",
"glob": "^7.0.6",
"handlebars": "^3.0.3",
"html-decoder": "^1.0.2",
"minimist": "^1.2.0",
"mkdirp": "^0.5.1",
"xss-filters": "^1.2.7"
},
"devDependencies": {
"chai": "^3.2.0",
"grunt": "^1.0.1",
"grunt-browserify": "^5.0.0",
"grunt-bump": "^0.8.0",
"grunt-cli": "^1.2.0",
"grunt-contrib-clean": "^1.0.0",
"grunt-contrib-jshint": "^1.0.0",
"grunt-contrib-uglify": "^2.0.0",
"grunt-exec": "^1.0.0",
"grunt-karma": "^2.0.0",
"grunt-mocha-istanbul": "^5.0.2",
"istanbul": "^0.4.5",
"jison": "^0.4.15",
"karma": "^1.3.0",
"karma-mocha": "^1.1.1",
"karma-phantomjs-launcher": "^1.0.2",
"mocha": "^3.0.2",
"phantomjs": "^2.1.7"
},
"main": "./src/secure-handlebars.js",
"bugs": {
"url": "https://github.com/yahoo/secure-handlebars/issues"
},
"homepage": "https://github.com/yahoo/secure-handlebars",
"directories": {
"test": "tests"
},
"license": "SEE LICENSE IN LICENSE"
}