forked from cure53/H5SC
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request cure53#4 from jimmyhchan/npmAndBower
add support for npm/bower so folks can use the attack data programatically
- Loading branch information
Showing
6 changed files
with
93 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
{ | ||
"name": "h5sc", | ||
"version": "0.0.0", | ||
"main": [ | ||
"items.js", | ||
"payloads.js", | ||
"categories.js" | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
var items = require('../items'), | ||
payloads = require('../payload'), | ||
categories = require('../categories'); | ||
|
||
var h5sc = {}; | ||
|
||
h5sc.items = items; | ||
h5sc.payloads = payloads; | ||
h5sc.categories = categories; | ||
|
||
module.exports = h5sc; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
{ | ||
"name": "H5SC", | ||
"version": "0.0.0", | ||
"description": "HTML5 Security Cheatsheet", | ||
"main": "lib/index.js", | ||
"scripts": { | ||
"test": "echo \"Error: no test specified\" && exit 1" | ||
}, | ||
"repository": { | ||
"type": "git", | ||
"url": "[email protected]:cure53/H5SC.git" | ||
}, | ||
"keywords": [ | ||
"security" | ||
], | ||
"author": "cure53", | ||
"license": "Mozilla Public License, version 2.0", | ||
"bugs": { | ||
"url": "https://github.com/cure53/H5SC/issues" | ||
}, | ||
"homepage": "https://github.com/cure53/H5SC" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters